Sha256: afd1854f4eb470920cf65dfea01d8d04583ee1838fc7681366412787c8f52b75
Contents?: true
Size: 400 Bytes
Versions: 3
Compression:
Stored size: 400 Bytes
Contents
# frozen_string_literal: true class CreateDecidimParticipatoryDocumentsAnnotations < ActiveRecord::Migration[6.0] def change create_table :decidim_participatory_documents_annotations do |t| t.references :section, null: false, index: { name: "decidim_pd_annotation_section" } t.jsonb :rect, default: {} t.integer :page_number, default: 1 t.timestamps end end end
Version data entries
3 entries across 3 versions & 1 rubygems