Implement the majority of the API

This commit is contained in:
Oliver-Akins 2023-08-31 19:12:34 -06:00
parent e322f24457
commit 4b61e73573
15 changed files with 475 additions and 6 deletions

View file

@ -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
);