mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
5 lines
147 B
Ruby
5 lines
147 B
Ruby
class AddVersionToPosts < ActiveRecord::Migration
|
|
def change
|
|
add_column :posts, :cached_version, :integer, null: false, default: 1
|
|
end
|
|
end
|