QnA/database/init.sql
2023-08-29 19:24:08 -06:00

9 lines
No EOL
206 B
SQL

create database if not exists tqna;
create table if not exists tqna.questions (
`__id` integer not null auto_increment primary key,
`channel` text,
`asker` text,
`question` text,
`answered` boolean
);