mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-27 03:25:08 +00:00
7 lines
158 B
SQL
7 lines
158 B
SQL
CREATE TABLE IF NOT EXISTS todos
|
|
(
|
|
id BIGSERIAL PRIMARY KEY,
|
|
description TEXT NOT NULL,
|
|
done BOOLEAN NOT NULL DEFAULT FALSE
|
|
);
|