mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
7 lines
227 B
Ruby
7 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
|