12 lines
408 B
MySQL
12 lines
408 B
MySQL
|
create database if not exists `intimate_source`;
|
||
|
use intimate_source;
|
||
|
|
||
|
CREATE TABLE IF NOT EXISTS `platform_openrec` (
|
||
|
`url` text NOT NULL,
|
||
|
`target_type` varchar(64) NOT NULL,
|
||
|
`source` longtext DEFAULT NULL,
|
||
|
`ext` json DEFAULT NULL,
|
||
|
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||
|
KEY `update_time_idx` (`update_time`),
|
||
|
KEY `target_type_idx` (`target_type`)
|
||
|
);
|