.
This commit is contained in:
parent
72ac25f773
commit
fd30062398
1 changed files with 9 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
CREATE TABLE
|
CREATE TABLE
|
||||||
`statement` (
|
`statement` (
|
||||||
`id` int(11) NOT NULL,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`text` varchar(255) DEFAULT NULL,
|
`text` varchar(255) DEFAULT NULL,
|
||||||
`search_text` varchar(255) NOT NULL DEFAULT '',
|
`search_text` varchar(255) NOT NULL DEFAULT '',
|
||||||
`conversation` varchar(32) NOT NULL DEFAULT '',
|
`conversation` varchar(32) NOT NULL DEFAULT '',
|
||||||
|
@ -13,7 +13,7 @@ CREATE TABLE
|
||||||
|
|
||||||
CREATE TABLE
|
CREATE TABLE
|
||||||
`nsfw_content` (
|
`nsfw_content` (
|
||||||
`id` int(11) NOT NULL,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`text` varchar(255) NOT NULL DEFAULT '',
|
`text` varchar(255) NOT NULL DEFAULT '',
|
||||||
`created_at` datetime DEFAULT current_timestamp(),
|
`created_at` datetime DEFAULT current_timestamp(),
|
||||||
`persona` varchar(50) NOT NULL DEFAULT '',
|
`persona` varchar(50) NOT NULL DEFAULT '',
|
||||||
|
@ -21,10 +21,11 @@ CREATE TABLE
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE
|
CREATE TABLE
|
||||||
learn (
|
`learn` (
|
||||||
command varchar(255) NOT NULL,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
result varchar(255) NOT NULL,
|
`command` varchar(255) NOT NULL,
|
||||||
user_id varchar(255) NOT NULL,
|
`result` varchar(255) NOT NULL,
|
||||||
created_at datetime NOT NULL DEFAULT current_timestamp(),
|
`user_id` varchar(255) NOT NULL,
|
||||||
primary key(`command`)
|
`created_at` datetime NOT NULL DEFAULT current_timestamp(),
|
||||||
|
primary key(`id`)
|
||||||
);
|
);
|
Loading…
Reference in a new issue