Rename folder

This commit is contained in:
Oliver-Akins 2023-08-29 19:24:08 -06:00
parent 9df886beb9
commit 0f8f837458
2 changed files with 0 additions and 0 deletions

9
database/init.sql Normal file
View file

@ -0,0 +1,9 @@
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
);