Files
galaxy/crates/persistence/migrations/2023-03-09-213802_add_space_metadata/up.sql
T

8 lines
175 B
SQL

-- Your SQL goes here
CREATE TABLE teams (
id integer NOT NULL PRIMARY KEY,
server_id BIGINTEGER UNIQUE,
name TEXT NOT NULL,
creator_id BIGINTEGER NOT NULL
);