10 lines
379 B
SQL
10 lines
379 B
SQL
CREATE TABLE `presentation_frame` (
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|
`rf_region_id` bigint(20) unsigned NOT NULL,
|
|
`agency_id` bigint(20) unsigned NOT NULL,
|
|
`end_date` date DEFAULT NULL,
|
|
`token` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8
|
|
|
|
ALTER TABLE presentation_frame ADD color varchar(20) NULL; |