Skip to content

Commit 38280af

Browse files
committed
fix: remove sqlite status check
1 parent 5899d5d commit 38280af

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ALTER TABLE comments DROP COLUMN status;
2+
ALTER TABLE comments ADD COLUMN status TEXT DEFAULT "PENDING";

site/config/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'spam' => [
4747
'delete' => false,
4848
'verification' => [
49-
'enabled' => false,
49+
'enabled' => true,
5050
'ttl' => 1,
5151
'secret' => 'my-extremly-secure-secret',
5252
'autoPublish' => false,

vendor/composer/installed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'mauricerenck/komments',
4-
'pretty_version' => '3.6.0',
5-
'version' => '3.6.0.0',
4+
'pretty_version' => '3.7.0',
5+
'version' => '3.7.0.0',
66
'reference' => null,
77
'type' => 'kirby-plugin',
88
'install_path' => __DIR__ . '/../../',
@@ -29,8 +29,8 @@
2929
'dev_requirement' => false,
3030
),
3131
'mauricerenck/komments' => array(
32-
'pretty_version' => '3.6.0',
33-
'version' => '3.6.0.0',
32+
'pretty_version' => '3.7.0',
33+
'version' => '3.7.0.0',
3434
'reference' => null,
3535
'type' => 'kirby-plugin',
3636
'install_path' => __DIR__ . '/../../',

0 commit comments

Comments
 (0)