1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-website/migrations/2020-10-14-203215_create_users/up.sql

8 lines
129 B
MySQL
Raw Normal View History

2020-10-14 20:36:24 +00:00
-- Your SQL goes here
CREATE TABLE users (
id SERIAL PRIMARY KEY,
2020-10-14 23:14:10 +00:00
username VARCHAR NOT NULL,
password VARCHAR NOT NULL
2020-10-14 20:36:24 +00:00
);