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

13 lines
271 B
Ruby

# frozen_string_literal: true
# From this migration, machines can be grouped into categories
class CreateMachineCategories < ActiveRecord::Migration[5.2]
def change
create_table :machine_categories do |t|
t.string :name
t.timestamps
end
end
end