mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
8 lines
227 B
Ruby
8 lines
227 B
Ruby
class AddUserToVersions < ActiveRecord::Migration
|
|
def change
|
|
execute "UPDATE versions SET user_type = 'User', user_id = posts.user_id
|
|
FROM posts
|
|
WHERE posts.id = versions.versioned_id"
|
|
end
|
|
end
|