mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
9 lines
265 B
SQL
9 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
|
|
);
|