Sha256: 158fc0cafe5bde3a1124736a5f0452bb60625f3481b2eeffb1f3be70341d5bac
Contents?: true
Size: 333 Bytes
Versions: 136
Compression:
Stored size: 333 Bytes
Contents
# frozen_string_literal: true class AddCategories < ActiveRecord::Migration[5.0] def change create_table :decidim_categories do |t| t.jsonb :name, null: false t.jsonb :description, null: false t.integer :parent_id, index: true t.integer :decidim_participatory_process_id, index: true end end end
Version data entries
136 entries across 136 versions & 2 rubygems