mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 12:11:16 -05:00
5 lines
151 B
Ruby
5 lines
151 B
Ruby
class RenameSeenPostCount < ActiveRecord::Migration
|
|
def change
|
|
rename_column :topic_users, :seen_post_count, :highest_seen_post_number
|
|
end
|
|
end
|