ash_hq/priv/repo/migrations/20230113172048_migrate_resources39.exs

22 lines
403 B
Elixir
Raw Normal View History

defmodule AshHq.Repo.Migrations.MigrateResources39 do
@moduledoc """
Updates resources based on their most recent snapshots.
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
alter table(:users) do
2023-01-14 09:20:13 +13:00
add(:github_info, :map)
end
end
def down do
alter table(:users) do
2023-01-14 09:20:13 +13:00
remove(:github_info)
end
end
2023-01-14 09:20:13 +13:00
end