Update db/migrate/20240905024953_move_solved_topic_custom_field_to_discourse_solved_solutions.rb

Co-authored-by: Bianca Nenciu <nbianca@users.noreply.github.com>
This commit is contained in:
Linca 2024-09-10 14:26:18 +08:00 committed by GitHub
parent 1a07c87e71
commit 15bc18248f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class MoveSolvedTopicCustomFieldToDiscourseSolvedSolutions < ActiveRecord::Migra
create_table :discourse_solved_solutions do |t|
t.integer :topic_id, null: false
t.integer :answer_post_id, null: false
t.integer :accepter_user_id, null: true
t.integer :accepter_user_id
t.integer :topic_timer_id, null: true
t.timestamps
end