1
0
mirror of https://github.com/actix/examples synced 2025-06-29 02:10:36 +02:00

Add actix-todo example

This commit is contained in:
Dan Munckton
2018-08-27 10:56:26 +01:00
parent d653fe4822
commit 60c3ca2050
24 changed files with 1615 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP TABLE tasks

View File

@ -0,0 +1,5 @@
CREATE TABLE tasks (
id SERIAL PRIMARY KEY,
description VARCHAR NOT NULL,
completed BOOLEAN NOT NULL DEFAULT 'f'
);