if not exists on table create

This commit is contained in:
Moon Man 2023-07-27 01:56:23 +00:00
parent d725fef5fa
commit f39777d255
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ const db = new DB("scrappy.db");
const command = Deno.args[0];
if (command === "create") {
db.execute(`create table channel (id INTEGER PRIMARY KEY AUTOINCREMENT, channel_id text not null unique, channel_name text not null, last_seen_at number not null default 0);`);
db.execute(`create table if not exists channel (id INTEGER PRIMARY KEY AUTOINCREMENT, channel_id text not null unique, channel_name text not null, last_seen_at number not null default 0);`);
}
else if (command === "new" && Deno.args.length == 3) {
const channelId = Deno.args[1];