Initial commmit

This commit is contained in:
Edward Tirado Jr 2025-02-16 20:21:30 -06:00
commit 88383f90e5
1174 changed files with 227188 additions and 0 deletions

View file

@ -0,0 +1,3 @@
use movienight;
DROP TABLE movie_lists

View file

@ -0,0 +1,13 @@
USE movienight;
CREATE TABLE IF NOT EXISTS movie_lists
(
id INTEGER AUTO_INCREMENT PRIMARY KEY,
name TEXT NOT NULL,
public BOOLEAN NOT NULL,
owner INTEGER NOT NULL,
created_at DATETIME NOT NULL,
updated_at DATETIME NOT NULL,
deleted_at DATETIME,
FOREIGN KEY (owner) REFERENCES users (id)
);