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