Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Created September 19, 2018 22:59
Show Gist options
  • Save KamilLelonek/eba1c2c9916e6da4b70d6103d1244d02 to your computer and use it in GitHub Desktop.
Save KamilLelonek/eba1c2c9916e6da4b70d6103d1244d02 to your computer and use it in GitHub Desktop.
defmodule PostgresPubSub.Repo.Migrations.CreateAccounts do
use Ecto.Migration
def change do
create_if_not_exists table(:accounts) do
add(:username, :string, null: true)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment