discourse/db/migrate/20120427172031_add_version_to_posts.rb

6 lines
147 B
Ruby
Raw Normal View History

2013-02-05 13:16:51 -06:00
class AddVersionToPosts < ActiveRecord::Migration
def change
add_column :posts, :cached_version, :integer, null: false, default: 1
end
end