mirror of
https://github.com/actix/examples
synced 2024-11-24 14:53:00 +01:00
6 lines
123 B
SQL
6 lines
123 B
SQL
CREATE TABLE tasks (
|
|
id INTEGER PRIMARY KEY,
|
|
description VARCHAR NOT NULL,
|
|
completed BOOLEAN NOT NULL DEFAULT 'f'
|
|
);
|