1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20160801145502_create_organizations.rb
2016-08-01 17:36:38 +02:00

10 lines
175 B
Ruby

class CreateOrganizations < ActiveRecord::Migration
def change
create_table :organizations do |t|
t.string :name
t.timestamps null: false
end
end
end