Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ALTER TABLE account ADD UNIQUE (username);
  2. ALTER TABLE account DROP COLUMN contact;
  3. CREATE TYPE positionEnum AS ENUM ('Instructor', 'Student', 'Organizer');
  4. ALTER TABLE account DROP COLUMN position;
  5. ALTER TABLE account ADD COLUMN position positionEnum;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement