|
Lines 5662-5668
CREATE TABLE `record_sources` (
Link Here
|
| 5662 |
`record_source_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key for the `record_sources` table', |
5662 |
`record_source_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key for the `record_sources` table', |
| 5663 |
`name` text NOT NULL COMMENT 'User defined name for the record source', |
5663 |
`name` text NOT NULL COMMENT 'User defined name for the record source', |
| 5664 |
`can_be_edited` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'If records from this source can be edited', |
5664 |
`can_be_edited` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'If records from this source can be edited', |
| 5665 |
PRIMARY KEY (`record_source_id`) |
5665 |
`is_system` tinyint(1) NOT NULL DEFAULT 0, |
|
|
5666 |
PRIMARY KEY (`record_source_id`), |
| 5667 |
UNIQUE KEY `name` (`name`(191)) |
| 5666 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5668 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 5667 |
/*!40101 SET character_set_client = @saved_cs_client */; |
5669 |
/*!40101 SET character_set_client = @saved_cs_client */; |
| 5668 |
|
5670 |
|
| 5669 |
- |
|
|