Sha256: ea79ab4c27a502a102cf76edc914e2f185a2c282e1aff9a7b49da2f521969cbf
Contents?: true
Size: 249 Bytes
Versions: 14
Compression:
Stored size: 249 Bytes
Contents
# frozen_string_literal: true class DemandBlogIdOnContents < ActiveRecord::Migration[4.2] def up change_column :contents, :blog_id, :integer, null: false end def down change_column :contents, :blog_id, :integer, null: true end end
Version data entries
14 entries across 14 versions & 1 rubygems