1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 19:59:33 +00:00
discourse/db/migrate/20131107154900_rename_banned_to_suspended.rb

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

9 lines
225 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