1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/db/migrate/20221212162655_create_machine_categories.rb

10 lines
177 B
Ruby
Raw Normal View History

2022-12-16 18:43:38 +01:00
class CreateMachineCategories < ActiveRecord::Migration[5.2]
def change
create_table :machine_categories do |t|
t.string :name
t.timestamps
end
end
end