9 lines
233 B
MySQL
9 lines
233 B
MySQL
|
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
|