mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-02 07:31:50 +00:00
7 lines
185 B
SQL
7 lines
185 B
SQL
CREATE TABLE IF NOT EXISTS todos
|
|
(
|
|
id INTEGER PRIMARY KEY NOT NULL,
|
|
description TEXT NOT NULL,
|
|
done BOOLEAN NOT NULL DEFAULT 0
|
|
);
|