mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 09:09:18 +08:00
8 lines
223 B
Ruby
8 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
|