Sha256: 455e498f7760a678f15073c3c663da74085889906be9d204dfc250fb73879a70
Contents?: true
Size: 320 Bytes
Versions: 25
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
25 entries across 25 versions & 1 rubygems