Sha256: 05f49e96d04e2d73b27347c9ceea324247b08b62b8703f1ad7bc543b8d19182e
Contents?: true
Size: 308 Bytes
Versions: 76
Compression:
Stored size: 308 Bytes
Contents
# frozen_string_literal: true class AddColumnsToStaticPageTopic < ActiveRecord::Migration[5.2] def change change_table :decidim_static_page_topics do |t| t.column :weight, :integer, default: nil, null: true t.column :show_in_footer, :boolean, default: false, null: false end end end
Version data entries
76 entries across 76 versions & 1 rubygems