discourse/db/migrate/20121123054127_make_post_number_distinct.rb
Sam 5f64fd0a21 DEV: remove exec_sql and replace with mini_sql
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
2018-06-19 16:13:36 +10:00

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