DEV: Apply form template to categories (#20337)

This commit is contained in:
Keegan George
2023-02-23 11:18:14 -08:00
committed by GitHub
parent a9f2c6db64
commit 6108eee31d
16 changed files with 324 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
# frozen_string_literal: true
class CreateCategoryFormTemplates < ActiveRecord::Migration[7.0]
def change
create_table :category_form_templates do |t|
t.references :category, null: false
t.references :form_template, null: false
t.timestamps
end
end
end