mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-25 14:14:00 +01:00
12 lines
244 B
Elixir
12 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
|