Compare commits
2 Commits
d725fef5fa
...
23459bc0fd
Author | SHA1 | Date |
---|---|---|
Moon Man | 23459bc0fd | |
Moon Man | f39777d255 |
|
@ -4,6 +4,6 @@
|
|||
"create": "deno run --allow-read=scrappy.db,scrappy.db-journal --allow-write=scrappy.db,scrappy.db-journal main.ts create",
|
||||
"run": "deno run --allow-net=youtube.com main.ts run",
|
||||
"new": "deno run --allow-read=scrappy.db,scrappy.db-journal --allow-write=scrappy.db,scrappy.db-journal main.ts new",
|
||||
"get": "deno run --allow-net=www.youtube.com --allow-run --allow-read=scrappy.db,scrappy.db-journal --allow-write=scrappy.db,scrappy.db-journal main.ts get"
|
||||
"get": "deno run --allow-net=www.youtube.com --allow-run --allow-read=scrappy.db,scrappy.db-journal --allow-write main.ts get"
|
||||
}
|
||||
}
|
||||
|
|
2
main.ts
2
main.ts
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue