mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
13 lines
271 B
Ruby
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
|