diff --git a/migrations/000001_create_channels_table.up.sql b/migrations/000001_create_channels_table.up.sql index 67a6621..57eded0 100644 --- a/migrations/000001_create_channels_table.up.sql +++ b/migrations/000001_create_channels_table.up.sql @@ -3,4 +3,10 @@ CREATE TABLE IF NOT EXISTS channels ( added_at timestamp(0) with time zone NOT NULL DEFAULT NOW(), login text UNIQUE NOT NULL, twitchid text NOT NULL -); \ No newline at end of file +); + +INSERT INTO channels (added_at,login,twitchid) VALUES + (NOW(),'nourylul','31437432'), + (NOW(),'nourybot','596581605'), + (NOW(),'uudelleenkytkeytynyt','465178364'), + (NOW(),'xnoury','197780373'); diff --git a/migrations/000002_create_users_table.up.sql b/migrations/000002_create_users_table.up.sql index e20ed9f..cfa6682 100644 --- a/migrations/000002_create_users_table.up.sql +++ b/migrations/000002_create_users_table.up.sql @@ -4,4 +4,10 @@ CREATE TABLE IF NOT EXISTS users ( login text UNIQUE NOT NULL, twitchid text NOT NULL, level integer NOT NULL -); \ No newline at end of file +); + +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);