mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 02:09:54 +08:00
7 lines
194 B
Ruby
7 lines
194 B
Ruby
class RenameBannedToSuspended < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_column :users, :banned_at, :suspended_at
|
|
rename_column :users, :banned_till, :suspended_till
|
|
end
|
|
end
|