Files
old-saburly-confighub/web/db/migrate/20160220091225_create_operating_systems.rb

9 lines
194 B
Ruby
Raw Normal View History

2016-02-20 12:36:50 +01:00
class CreateOperatingSystems < ActiveRecord::Migration
def change
create_table :operating_systems do |t|
t.string :name, null: false
t.timestamps null: false
end
end
end