Advertisement
Guest User

users

a guest
Mar 28th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. create table users
  2. (
  3.     id bigint not null constraint users_pkey primary key,
  4.     active      integer      not null,
  5.     password    varchar(255) not null,
  6.     permissions varchar(255),
  7.     roles       varchar(255),
  8.     username    varchar(255) not null constraint uk_r43af9ap4edm43mmtq01oddj6 unique
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement