mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-07-05 21:32:11 +00:00
Related: - https://github.com/discourse/discourse-solved/pull/309 - https://github.com/discourse/discourse-solved/pull/341 Requires: - https://github.com/discourse/discourse/pull/31954 This commit converts all use of post and topic custom fields into a dedicated table: - migration for copying custom field into table - swap app usage of custom fields to table This commit does not attempt to fix issues or optimise, and does not delete old data from custom fields _yet_.
7 lines
174 B
Ruby
7 lines
174 B
Ruby
# frozen_string_literal: true
|
|
Fabricator(:solved_topic, from: DiscourseSolved::SolvedTopic) do
|
|
topic
|
|
answer_post { Fabricate(:post) }
|
|
accepter { Fabricate(:user) }
|
|
end
|