mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
6 lines
185 B
SQL
6 lines
185 B
SQL
CREATE TABLE IF NOT EXISTS todos (
|
|
id BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
description TEXT NOT NULL,
|
|
done BOOLEAN NOT NULL DEFAULT FALSE
|
|
);
|