mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
9 lines
223 B
Ruby
9 lines
223 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameBannedToSuspended < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_column :users, :banned_at, :suspended_at
|
|
rename_column :users, :banned_till, :suspended_till
|
|
end
|
|
end
|