CoolFace
Apppublic

bashartc14/todo_backend

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
todo_app.db11 linesDownload Raw Back to root
1SQLite format 3@  .�
���M+iindexix_task_user_idtaskCREATE INDEX ix_task_user_id ON task (user_id)�	�utabletasktaskCREATE TABLE task (2	title VARCHAR(200) NOT NULL, 3	description VARCHAR(1000), 4	completed BOOLEAN NOT NULL, 5	id INTEGER NOT NULL, 6	user_id VARCHAR NOT NULL, 7	created_at DATETIME NOT NULL, 8	updated_at DATETIME NOT NULL, 9	PRIMARY KEY (id)10)
11