1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-11 05:54:15 +01:00
fab-manager/db/migrate/20150429095139_create_components.rb
2015-05-05 03:10:25 +02:00

8 lines
150 B
Ruby

class CreateComponents < ActiveRecord::Migration
def change
create_table :components do |t|
t.string :name, null: false
end
end
end