mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
12 lines
211 B
Ruby
12 lines
211 B
Ruby
class CreateMachines < ActiveRecord::Migration
|
|
def change
|
|
create_table :machines do |t|
|
|
t.string :name, null: false
|
|
t.text :description
|
|
t.text :spec
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|