mirror of
https://github.com/actix/examples
synced 2024-11-25 07:12:42 +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'
|
||
|
);
|