mirror of
https://github.com/actix/examples
synced 2024-11-24 23:02:59 +01:00
6 lines
122 B
MySQL
6 lines
122 B
MySQL
|
CREATE TABLE tasks (
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
description VARCHAR NOT NULL,
|
||
|
completed BOOLEAN NOT NULL DEFAULT 'f'
|
||
|
);
|