sqlx/tests/migrate/migrations/20200723212833_tweet.sql
2020-07-23 17:46:27 -04:00

7 lines
147 B
SQL

CREATE TABLE tweet (
id BIGINT NOT NULL PRIMARY KEY,
text TEXT NOT NULL,
is_sent BOOLEAN NOT NULL DEFAULT TRUE,
owner_id BIGINT
);