Sha256: 05abf0e1cffa801ebc10ea719b5dcbd7614819fa8018a24ff9d6e0a15a2a4649
Contents?: true
Size: 423 Bytes
Versions: 71
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true class CreateDecidimFormsQuestions < ActiveRecord::Migration[5.0] def change create_table :decidim_forms_questions do |t| t.references :decidim_questionnaire, index: true t.integer :position, index: true t.string :question_type t.boolean :mandatory t.jsonb :body t.jsonb :description t.integer :max_choices t.timestamps end end end
Version data entries
71 entries across 71 versions & 1 rubygems