Lines 5540-5546
CREATE TABLE `record_sources` (
Link Here
|
5540 |
`record_source_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key for the `record_sources` table', |
5540 |
`record_source_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key for the `record_sources` table', |
5541 |
`name` text NOT NULL COMMENT 'User defined name for the record source', |
5541 |
`name` text NOT NULL COMMENT 'User defined name for the record source', |
5542 |
`can_be_edited` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'If records from this source can be edited', |
5542 |
`can_be_edited` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'If records from this source can be edited', |
5543 |
PRIMARY KEY (`record_source_id`) |
5543 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
|
|
5544 |
PRIMARY KEY (`record_source_id`), |
5545 |
UNIQUE KEY `name` (`name`(191)) |
5544 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5546 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5545 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5547 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5546 |
|
5548 |
|
5547 |
- |
|
|