openfoodfoundation/openfoodnetwork

View on GitHub
db/migrate/20230522120633_create_custom_tabs.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateCustomTabs < ActiveRecord::Migration[7.0]
  def change
    create_table :custom_tabs do |t|
      t.string :title
      t.text :content

      t.timestamps
    end
    add_reference :custom_tabs, :enterprise, foreign_key: { on_delete: :cascade }, index: true
  end
end