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

13 lines
271 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# From this migration, machines can be grouped into categories
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