admin / data /migrations /admin_2020_04_14_100427_mysql.sql
AZLABS's picture
Upload folder using huggingface_hub
530729e verified
raw
history blame contribute delete
513 Bytes
CREATE TABLE `goadmin_site` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` longtext COLLATE utf8mb4_unicode_ci,
`description` varchar(3000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` tinyint(3) unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;