Lines 1121-1126
DROP TABLE IF EXISTS `biblio_framework`;
Link Here
|
1121 |
CREATE TABLE `biblio_framework` ( |
1121 |
CREATE TABLE `biblio_framework` ( |
1122 |
`frameworkcode` varchar(4) NOT NULL DEFAULT '' COMMENT 'the unique code assigned to the framework', |
1122 |
`frameworkcode` varchar(4) NOT NULL DEFAULT '' COMMENT 'the unique code assigned to the framework', |
1123 |
`frameworktext` varchar(255) NOT NULL DEFAULT '' COMMENT 'the description/name given to the framework', |
1123 |
`frameworktext` varchar(255) NOT NULL DEFAULT '' COMMENT 'the description/name given to the framework', |
|
|
1124 |
`is_fast_add` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'the ability to be used as a Fast Add framework', |
1124 |
PRIMARY KEY (`frameworkcode`) |
1125 |
PRIMARY KEY (`frameworkcode`) |
1125 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1126 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1126 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1127 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1127 |
- |
|
|