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

10 lines
217 B
SQL

-- Your SQL goes here
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR NOT NULL,
encrypted_password VARCHAR NOT NULL
);
CREATE UNIQUE INDEX index_users_on_username ON users USING btree (username);