mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
11 lines
344 B
SQL
11 lines
344 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
|
|
);
|
|
|
|
insert into tweet(id, text, owner_id) values (1, '#sqlx is pretty cool!', 1);
|