mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
10 lines
242 B
Ruby
10 lines
242 B
Ruby
class RenameVersionColumn < ActiveRecord::Migration
|
|
|
|
def change
|
|
add_column :posts, :version, :integer, default: 1, null: false
|
|
execute "UPDATE posts SET version = cached_version"
|
|
remove_column :posts, :cached_version
|
|
end
|
|
|
|
end
|