Sha256: 7a920444d46850e752c2d8321e6273f6c8789762a09e248cc2ab80e11603565c
Contents?: true
Size: 320 Bytes
Versions: 3
Compression:
Stored size: 320 Bytes
Contents
class CreatePandaCMSFormSubmissions < ActiveRecord::Migration[7.1] def change create_table :panda_cms_form_submissions, id: :uuid do |t| t.references :form, type: :uuid, null: false, foreign_key: {to_table: :panda_cms_forms} t.jsonb :data, null: false, default: {} t.timestamps end end end
Version data entries
3 entries across 3 versions & 1 rubygems