diff options
Diffstat (limited to 'db/migrate/20111009203233_add_country_id_to_tenant.rb')
-rw-r--r-- | db/migrate/20111009203233_add_country_id_to_tenant.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20111009203233_add_country_id_to_tenant.rb b/db/migrate/20111009203233_add_country_id_to_tenant.rb new file mode 100644 index 0000000..9ba0288 --- /dev/null +++ b/db/migrate/20111009203233_add_country_id_to_tenant.rb @@ -0,0 +1,5 @@ +class AddCountryIdToTenant < ActiveRecord::Migration + def change + add_column :tenants, :country_id, :integer + end +end |