9 lines
233 B
SQL
9 lines
233 B
SQL
BEGIN TRANSACTION;
|
|
|
|
create table if not exists dictionarydb (date_added text not null, added_by text not null, channel text not null, word text not null, definition text not null)
|
|
|
|
COMMIT;
|
|
|
|
--delete from quotedb
|
|
--drop table quotedb
|