Lines 5602-5608
CREATE TABLE `record_sources` (
Link Here
|
5602 |
`record_source_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key for the `record_sources` table', |
5602 |
`record_source_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key for the `record_sources` table', |
5603 |
`name` text NOT NULL COMMENT 'User defined name for the record source', |
5603 |
`name` text NOT NULL COMMENT 'User defined name for the record source', |
5604 |
`can_be_edited` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'If records from this source can be edited', |
5604 |
`can_be_edited` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'If records from this source can be edited', |
5605 |
PRIMARY KEY (`record_source_id`) |
5605 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
|
|
5606 |
PRIMARY KEY (`record_source_id`), |
5607 |
UNIQUE KEY `name` (`name`(191)) |
5606 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5608 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5607 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5609 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5608 |
|
5610 |
|
5609 |
- |
|
|