Skip to content

Instantly share code, notes, and snippets.

@Daniel1984
Created April 22, 2020 18:02
Show Gist options
  • Save Daniel1984/b4e4fa165537e568b0a057c027465e56 to your computer and use it in GitHub Desktop.
Save Daniel1984/b4e4fa165537e568b0a057c027465e56 to your computer and use it in GitHub Desktop.
-- db/migrations/${timestamp}_create_user.up.sql
CREATE TABLE IF NOT EXISTS public.users
(
id SERIAL PRIMARY KEY,
username VARCHAR(100) NOT NULL UNIQUE
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment