Skip to content

Commit

Permalink
Update client_states_table.sql for mysql syntax (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarciabriseno authored Jun 20, 2024
1 parent bc7bca8 commit babb3d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/database/2024_05_16_create_client_states_table.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CREATE TABLE IF NOT EXISTS `client_states` (
`id` CHAR(64) PRIMARY KEY,
`state` JSON NOT NULL DEFAULT '{}',
`state` JSON NOT NULL DEFAULT ('{}'),
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`updated` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

0 comments on commit babb3d9

Please sign in to comment.