Skip to content

Commit

Permalink
Update client_states_table.sql for mysql syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarciabriseno committed Jun 12, 2024
1 parent a73f755 commit 98f97a3
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 98f97a3

Please sign in to comment.