You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2b-rs/bot-database/migrations/2021-08-17-100505_add_event.../up.sql

10 lines
266 B
SQL

-- Your SQL goes here
CREATE TABLE events (
id SERIAL PRIMARY KEY,
guild_id BIGINT NOT NULL,
channel_id BIGINT NOT NULL,
name VARCHAR(128) NOT NULL,
description VARCHAR(4096) NOT NULL,
event_start timestamp NOT NULL,
event_end timestamp
)