Started rocket backend

This commit is contained in:
2024-08-10 20:24:26 +02:00
parent 07ae4c4118
commit e37a57ea81
13 changed files with 188 additions and 167 deletions

0
migrations/.keep Normal file
View File

View File

@@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE users;

View File

@@ -0,0 +1,6 @@
-- Your SQL goes here
CREATE TABLE users (
id INT PRIMARY KEY,
email VARCHAR(64) NOT NULL,
name VARCHAR(255)
);