mirror of
https://github.com/alvierahman90/rabbit.git
synced 2026-08-18 09:42:46 +00:00
start creating server endpoints, database boilerplate
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE users;
|
||||
@@ -0,0 +1,5 @@
|
||||
CREATE TABLE users (
|
||||
id SERIAL PRIMARY KEY,
|
||||
name VARCHAR NOT NULL,
|
||||
email VARCHAR NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user