mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-14 00:07:05 +00:00
8 lines
265 B
SQL
8 lines
265 B
SQL
-- https://github.com/prisma/database-schema-examples/tree/master/postgres/basic-twitter#basic-twitter
|
|
CREATE TABLE tweet
|
|
(
|
|
id BIGINT NOT NULL PRIMARY KEY,
|
|
text TEXT NOT NULL,
|
|
is_sent BOOLEAN NOT NULL DEFAULT TRUE,
|
|
owner_id BIGINT
|
|
);
|