From 15bc18248f064f98294630198faf786cc744ee55 Mon Sep 17 00:00:00 2001 From: Linca <41134017+Lhcfl@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:26:18 +0800 Subject: [PATCH] Update db/migrate/20240905024953_move_solved_topic_custom_field_to_discourse_solved_solutions.rb Co-authored-by: Bianca Nenciu --- ...e_solved_topic_custom_field_to_discourse_solved_solutions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/20240905024953_move_solved_topic_custom_field_to_discourse_solved_solutions.rb b/db/migrate/20240905024953_move_solved_topic_custom_field_to_discourse_solved_solutions.rb index 3e91f76..be9c3b3 100644 --- a/db/migrate/20240905024953_move_solved_topic_custom_field_to_discourse_solved_solutions.rb +++ b/db/migrate/20240905024953_move_solved_topic_custom_field_to_discourse_solved_solutions.rb @@ -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