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:
@ -0,0 +1 @@
|
||||
DROP TABLE tasks
|
@ -0,0 +1,5 @@
|
||||
CREATE TABLE tasks (
|
||||
id SERIAL PRIMARY KEY,
|
||||
description VARCHAR NOT NULL,
|
||||
completed BOOLEAN NOT NULL DEFAULT 'f'
|
||||
);
|
Reference in New Issue
Block a user