Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 8, 2017 03:10
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 shankardevy/0b8e242dca7a78e7f7ebccf3afbbd135 to your computer and use it in GitHub Desktop.
Save shankardevy/0b8e242dca7a78e7f7ebccf3afbbd135 to your computer and use it in GitHub Desktop.
Migration file for create customers
defmodule Mango.Repo.Migrations.CreateCustomers do
use Ecto.Migration
def change do
create table(:customers) do
add :name, :string
add :email, :string
add :phone, :string
add :residence_area, :string
add :password_hash, :string
timestamps()
end
create unique_index(:customers, [:email])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment