Skip to content

Commit

Permalink
test: DB generation behavior with DEFAULT NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
bradjohnl committed Feb 21, 2024
1 parent 5c33952 commit 4bbbcbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/db.php
Original file line number Diff line number Diff line change
Expand Up @@ -1152,11 +1152,11 @@ public function check_integrity() {
),
"accepted_at" => array(
"type" => "timestamp",
"default" => "DEFAULT NULL"
"default" => "NULL DEFAULT NULL"
),
"confirmation_code" => array(
"type" => "varchar(64)",
"default" => "DEFAULT NULL"
"default" => "NULL DEFAULT NULL"
)
),
"primary" => "email",
Expand Down

0 comments on commit 4bbbcbc

Please sign in to comment.