mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
6 lines
147 B
Ruby
6 lines
147 B
Ruby
class AddVersionToPosts < ActiveRecord::Migration
|
|
def change
|
|
add_column :posts, :cached_version, :integer, null: false, default: 1
|
|
end
|
|
end
|