forked from AkkomaGang/akkoma
Ensure rollback succeeds
This commit is contained in:
parent
4e01e1bf72
commit
ee2eb7752d
1 changed files with 7 additions and 1 deletions
|
@ -1,9 +1,15 @@
|
||||||
defmodule Pleroma.Repo.Migrations.EnsureMastofeSettings do
|
defmodule Pleroma.Repo.Migrations.EnsureMastofeSettings do
|
||||||
use Ecto.Migration
|
use Ecto.Migration
|
||||||
|
|
||||||
def change do
|
def up do
|
||||||
alter table(:users) do
|
alter table(:users) do
|
||||||
add_if_not_exists(:mastofe_settings, :map)
|
add_if_not_exists(:mastofe_settings, :map)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def down do
|
||||||
|
alter table(:users) do
|
||||||
|
remove_if_exists(:mastofe_settings, :map)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue