mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:42:16 +08:00
7 lines
260 B
Ruby
7 lines
260 B
Ruby
|
class AddPositionToUserFields < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :user_fields, :position, :integer, default: 0
|
||
|
execute "UPDATE user_fields SET position = (SELECT COUNT(*) from user_fields as uf2 where uf2.id < user_fields.id)"
|
||
|
end
|
||
|
end
|