mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
add initial data to migration
This commit is contained in:
parent
fa9566d6ce
commit
94f21a2a66
2 changed files with 14 additions and 2 deletions
|
@ -4,3 +4,9 @@ CREATE TABLE IF NOT EXISTS channels (
|
||||||
login text UNIQUE NOT NULL,
|
login text UNIQUE NOT NULL,
|
||||||
twitchid text NOT NULL
|
twitchid text NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
INSERT INTO channels (added_at,login,twitchid) VALUES
|
||||||
|
(NOW(),'nourylul','31437432'),
|
||||||
|
(NOW(),'nourybot','596581605'),
|
||||||
|
(NOW(),'uudelleenkytkeytynyt','465178364'),
|
||||||
|
(NOW(),'xnoury','197780373');
|
||||||
|
|
|
@ -5,3 +5,9 @@ CREATE TABLE IF NOT EXISTS users (
|
||||||
twitchid text NOT NULL,
|
twitchid text NOT NULL,
|
||||||
level integer NOT NULL
|
level integer NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
INSERT INTO users (added_at,login,twitchid,"level") VALUES
|
||||||
|
(NOW(),'nourylul','31437432',1000),
|
||||||
|
(NOW(),'nourybot','596581605',1000),
|
||||||
|
(NOW(),'uudelleenkytkeytynyt','465178364',1000),
|
||||||
|
(NOW(),'xnoury','197780373',500);
|
||||||
|
|
Loading…
Reference in a new issue