discourse/db/migrate/20131107154900_rename_banne...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
223 B
Ruby
Raw Normal View History

# 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