mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 00:49:46 +00:00
d69af7f742
This is used exclusively by MastoFE/GlitchFE now
11 lines
244 B
Elixir
11 lines
244 B
Elixir
defmodule Pleroma.Repo.Migrations.RenameUserSettingsCol do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
rename(table(:users), :settings, to: :mastofe_settings)
|
|
end
|
|
|
|
def down do
|
|
rename(table(:users), :mastofe_settings, to: :settings)
|
|
end
|
|
end
|