aboutsummaryrefslogtreecommitdiff
path: root/planetwars-server/migrations/2021-12-18-130837_bots/up.sql
blob: b158940d5e6ebde88dea549f186cb252ba84bd01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CREATE TABLE bots (
    id serial PRIMARY KEY,
    owner_id integer REFERENCES users(id),
    name text UNIQUE NOT NULL
);

CREATE TABLE code_bundles (
    id serial PRIMARY KEY,
    bot_id integer REFERENCES bots(id),
    path text NOT NULL,
    created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
);