0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-02 07:31:50 +00:00
Files
libsql/sqlx-libsql/examples/todos/migrations/20200718111257_todos.sql
2024-09-27 16:44:33 -04:00

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
);