add note and lock to entity definition

This commit is contained in:
2019-08-19 17:59:58 -04:00
parent 570d858b17
commit 4cf1c728e1
3 changed files with 83 additions and 2 deletions

View File

@ -84,7 +84,9 @@ CREATE TABLE `civicrm_grant_budget` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique ScholarshipBudget ID',
`financial_type_id` int unsigned NOT NULL COMMENT 'FK to Financial Type',
`fiscal_year` int unsigned NOT NULL COMMENT 'Fiscal year',
`budget` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT 'Scholarship Annual Budget'
`budget` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT 'Scholarship Annual Budget',
`note` varchar(255) NULL COMMENT 'Note',
`is_reserved` tinyint DEFAULT 0 COMMENT 'Is this budget item locked for non-administrators?'
,
PRIMARY KEY (`id`)