/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
contrib/drivers/mysql/testdata/reservedwords_table_tpl.sql
20 строк
753 B
John Guo
move ut cases from package gdb to contrib/drivers/mysql
10 май 2022, 10:38
10 май 2022, 10:38
dc6a923
Код
Авторство
О чём код?
CREATE TABLE %s ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `key` varchar(45) DEFAULT NULL, `category_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `title` varchar(255) NOT NULL, `content` mediumtext NOT NULL, `sort` int(10) unsigned DEFAULT '0', `brief` varchar(255) DEFAULT NULL, `thumb` varchar(255) DEFAULT NULL, `tags` varchar(900) DEFAULT NULL, `referer` varchar(255) DEFAULT NULL, `status` smallint(5) unsigned DEFAULT '0', `view_count` int(10) unsigned DEFAULT '0', `zan_count` int(10) unsigned DEFAULT NULL, `cai_count` int(10) unsigned DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;