Skip to content

Instantly share code, notes, and snippets.

@theednaffattack
Created September 11, 2020 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theednaffattack/c4109db05bc03d5ec1e6b49cce82b21d to your computer and use it in GitHub Desktop.
Save theednaffattack/c4109db05bc03d5ec1e6b49cce82b21d to your computer and use it in GitHub Desktop.
-- migrate:up
SET search_path TO public;
CREATE TYPE role AS ENUM ('guest', 'administrator', 'moderator', 'manager');
ALTER TABLE ONLY public.user
ADD roles role;
-- migrate:down
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment