1
0
mirror of https://github.com/actix/examples synced 2025-01-23 14:24:35 +01:00

6 lines
122 B
MySQL
Raw Normal View History

2018-08-27 10:56:26 +01:00
CREATE TABLE tasks (
id SERIAL PRIMARY KEY,
description VARCHAR NOT NULL,
completed BOOLEAN NOT NULL DEFAULT 'f'
);