diff options
Diffstat (limited to 'db/migrate/20120723065038_add_uuid_to_tenants.rb')
-rw-r--r-- | db/migrate/20120723065038_add_uuid_to_tenants.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20120723065038_add_uuid_to_tenants.rb b/db/migrate/20120723065038_add_uuid_to_tenants.rb new file mode 100644 index 0000000..14d6912 --- /dev/null +++ b/db/migrate/20120723065038_add_uuid_to_tenants.rb @@ -0,0 +1,6 @@ +class AddUuidToTenants < ActiveRecord::Migration + def change + add_column :tenants, :uuid, :string + + end +end |