Sha256: 73311970988154e458e70312c9e3bca6873e4561c7174597d7e2dbaf8f4d4a74
Contents?: true
Size: 203 Bytes
Versions: 32
Compression:
Stored size: 203 Bytes
Contents
class FirstPosts < ActiveRecord::Migration def self.up Topic.find(:all).each do |topic| topic.first_post = topic.posts.first topic.save end end def self.down end end
Version data entries
32 entries across 32 versions & 1 rubygems