This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
redstoner.com/db/migrate/20150117154652_remove_role_from_label.rb
2015-01-17 18:28:38 +01:00

6 lines
111 B
Ruby

class RemoveRoleFromLabel < ActiveRecord::Migration
def change
remove_column :labels, :role_id
end
end