mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
5f64fd0a21
Introduce new patterns for direct sql that are safe and fast. MiniSql is not prone to memory bloat that can happen with direct PG usage. It also has an extremely fast materializer and very a convenient API - DB.exec(sql, *params) => runs sql returns row count - DB.query(sql, *params) => runs sql returns usable objects (not a hash) - DB.query_hash(sql, *params) => runs sql returns an array of hashes - DB.query_single(sql, *params) => runs sql and returns a flat one dimensional array - DB.build(sql) => returns a sql builder See more at: https://github.com/discourse/mini_sql
29 lines
555 B
Ruby
29 lines
555 B
Ruby
class MakePostNumberDistinct < ActiveRecord::Migration[4.2]
|
|
def up
|
|
|
|
DB.exec('update posts p
|
|
set post_number = calc
|
|
from
|
|
(
|
|
select
|
|
id,
|
|
post_number,
|
|
topic_id,
|
|
row_number() over (partition by topic_id order by post_number, created_at) calc
|
|
from posts
|
|
where topic_id in (
|
|
select topic_id from posts
|
|
group by topic_id, post_number
|
|
having count(*)>1
|
|
)
|
|
|
|
) as X
|
|
where calc <> p.post_number and X.id = p.id')
|
|
end
|
|
|
|
def down
|
|
# don't want to mess with the index ... its annoying
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|