Skip to content

Commit

Permalink
Also use an "expression" to specify the data column default in the …
Browse files Browse the repository at this point in the history
…`lti_launch_data` table.
  • Loading branch information
drgrice1 committed Aug 27, 2024
1 parent d33a76b commit 532f255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WeBWorK/DB/Record/LTILaunchData.pm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BEGIN {
state => { type => "VARCHAR(200) NOT NULL", key => 1 },
nonce => { type => "TEXT NOT NULL" },
timestamp => { type => "BIGINT" },
data => { type => "TEXT NOT NULL DEFAULT '{}'" }
data => { type => "TEXT NOT NULL DEFAULT ('{}')" }
);
}

Expand Down

0 comments on commit 532f255

Please sign in to comment.