mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05: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
|