mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 06:06:05 +01: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
|