Louis | Allows users to associate clients with agencies

This commit is contained in:
Loos
2014-09-22 19:44:03 -04:00
parent 7ed3fce648
commit 2a33493ff2
8 changed files with 23 additions and 10 deletions
@@ -0,0 +1,5 @@
class AddAgencyToClient < ActiveRecord::Migration
def change
add_reference :clients, :agency, index: true
end
end
@@ -0,0 +1,5 @@
class RemoveAgencyStringFromClient < ActiveRecord::Migration
def change
remove_column :clients, :agency
end
end