bonfire-app/flavours/classic/repo/migrations/20200523081012_init_pointers.exs

15 lines
245 B
Elixir
Raw Normal View History

2020-11-07 14:05:06 +00:00
defmodule Bonfire.Repo.Migrations.InitPointers do
2020-08-05 07:39:59 +00:00
use Ecto.Migration
import Pointers.Migration
2020-11-07 14:05:06 +00:00
2022-02-02 17:09:36 +00:00
def up do
init_pointers_ulid_extra()
init_pointers()
end
2022-09-12 04:34:14 +00:00
2022-02-02 17:09:36 +00:00
def down do
2022-01-09 18:28:47 +00:00
init_pointers_ulid_extra()
2021-03-14 17:52:37 +00:00
init_pointers()
2020-08-05 07:39:59 +00:00
end
end