DEVELOPMENT ENVIRONMENT

~liljamo/ulairi

ulairi/ulairi-api/migrations/2022-04-27-190554_users/up.sql -rw-r--r-- 184 bytes
6881fb5aJonni Liljamo docs: update README.md, add LICENSE and NOTICE 11 months ago
                                                                                
1
2
3
4
5
6
7
8
-- Your SQL goes here
CREATE TABLE users (
  id SERIAL PRIMARY KEY,
  username VARCHAR(128) UNIQUE NOT NULL,
  email VARCHAR(128) UNIQUE NOT NULL,
  password VARCHAR(256) NOT NULL
);