Sha256: 2b5dbc58ccba02802992957a66e976f876d04bbdfe2378696185069713efbe1d
Contents?: true
Size: 390 Bytes
Versions: 71
Compression:
Stored size: 390 Bytes
Contents
# frozen_string_literal: true class AddStaticPageTopics < ActiveRecord::Migration[5.2] def change create_table :decidim_static_page_topics do |t| t.column :title, :jsonb, null: false t.column :description, :jsonb, null: false t.references :organization, null: false end change_table :decidim_static_pages do |t| t.references :topic end end end
Version data entries
71 entries across 71 versions & 1 rubygems