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

12 lines
210 B
Ruby
Raw Normal View History

# frozen_string_literal:true
class CreateOrganizations < ActiveRecord::Migration[4.2]
2016-08-01 17:36:38 +02:00
def change
create_table :organizations do |t|
t.string :name
t.timestamps null: false
end
end
end