1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/db/migrate/20221212162655_create_machine_categories.rb
2022-12-20 18:45:53 +01:00

10 lines
177 B
Ruby

class CreateMachineCategories < ActiveRecord::Migration[5.2]
def change
create_table :machine_categories do |t|
t.string :name
t.timestamps
end
end
end