discourse/db/migrate/20120427172031_add_version_to_posts.rb

6 lines
147 B
Ruby
Raw Normal View History

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