We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b55169 commit ab09bcdCopy full SHA for ab09bcd
migrations/21_add_enable_accept_solutions.sql
@@ -0,0 +1,11 @@
1
+ALTER TABLE `pph_post_assist_config`
2
+ADD COLUMN IF NOT EXISTS `enable_accept_solutions` BOOLEAN DEFAULT FALSE;
3
+
4
+CREATE TABLE
5
+ IF NOT EXISTS `pph_post_assist_config_accept_solutions` (
6
+ `id` INT (11) NOT NULL AUTO_INCREMENT,
7
+ `thread_id` INT (11) NOT NULL,
8
+ `post_assist_config_id` INT (11) NOT NULL,
9
+ `user_id` INT (11) NOT NULL,
10
+ `created_at` DATETIME NOT NULL,
11
+ );
0 commit comments