Sha256: ed853d36bc47218772315337c98c11af229721bf4cf2682a76516e93ca1486ec
Contents?: true
Size: 219 Bytes
Versions: 12
Compression:
Stored size: 219 Bytes
Contents
class AddSummaryToPosts < ActiveRecord::Migration def change add_column :blogelator_posts, :summary, :text, default: "", null: false Blogelator::Post.all.each do |post| post.save! end end end
Version data entries
12 entries across 12 versions & 1 rubygems