Skip to content

Instantly share code, notes, and snippets.

@Hajto
Created November 18, 2017 16:52
Show Gist options
  • Save Hajto/71ee4f1c211088413cf2715409199a63 to your computer and use it in GitHub Desktop.
Save Hajto/71ee4f1c211088413cf2715409199a63 to your computer and use it in GitHub Desktop.
defmodule TalkMe.Repo.Migrations.CreateHobbies do
use Ecto.Migration
def change do
create table(:hobbies) do
add :name, :string
add :icon_url, :string
timestamps()
end
end
end
defmodule TalkMe.Repo.Migrations.CreateUsers do
use Ecto.Migration
def change do
create table(:users) do
add :name, :string
add :age, :integer
add :avatar_url, :string
timestamps()
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment