Current section

Files

Jump to
absinthe_ecto priv test_repo migrations 1_migrate_all.exs
Raw

priv/test_repo/migrations/1_migrate_all.exs

defmodule Absinthe.Ecto.TestRepo.Migrations.MigrateAll do
use Ecto.Migration
def change do
create table(:users) do
add :username, :string
end
create table(:posts) do
add :user_id, references(:users)
end
end
end