Import Ruty

This commit is contained in:
2024-03-11 00:57:00 +01:00
parent 50481b23df
commit 34a31bb184
617 changed files with 106612 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
CREATE TABLE responses (
response_id integer NOT NULL PRIMARY KEY,
user_id integer NOT NULL default '0',
changed datetime NOT NULL default '0000-00-00 00:00:00',
del tinyint NOT NULL default '0',
name varchar(255) NOT NULL,
data text NOT NULL,
is_html tinyint NOT NULL default '0'
);
CREATE UNIQUE INDEX ix_responses_user_id ON responses(user_id, del);