You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dashboard/db/migrate/20240104005325_create_dashb...

13 lines
317 B

class CreateDashboardSubcategories < ActiveRecord::Migration[7.1]
def change
create_table :dashboard_subcategories do |t|
t.string :name
t.text :description
t.string :subcategory_id
t.references :dashboard_categories, null: false, foreign_key: true
t.timestamps
end
end
end