mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 12:49:30 +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
|