QnA/database/init.sql
2023-08-31 19:12:34 -06:00

14 lines
No EOL
340 B
SQL

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,
`channel` text,
`asker` text,
`question` text,
`answered` boolean not null default false
);