1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
fab-manager/db/migrate/20190528140012_remove_user_id_from_invoice.rb

6 lines
127 B
Ruby
Raw Normal View History

class RemoveUserIdFromInvoice < ActiveRecord::Migration
def change
remove_column :invoices, :user_id, :integer
end
end