Created
September 19, 2018 22:59
-
-
Save KamilLelonek/eba1c2c9916e6da4b70d6103d1244d02 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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