Implement the majority of the API
This commit is contained in:
parent
e322f24457
commit
4b61e73573
15 changed files with 475 additions and 6 deletions
|
|
@ -1,9 +1,14 @@
|
|||
create database if not exists tqna;
|
||||
|
||||
create table if not exists tqna.twitchs (
|
||||
`id` integer not null auto_increment primary key,
|
||||
`channel` text
|
||||
);
|
||||
|
||||
create table if not exists tqna.questions (
|
||||
`__id` integer not null auto_increment primary key,
|
||||
`id` integer not null auto_increment primary key,
|
||||
`channel` text,
|
||||
`asker` text,
|
||||
`question` text,
|
||||
`answered` boolean
|
||||
`answered` boolean not null default false
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue