diff options
Diffstat (limited to '')
-rw-r--r-- | nodejs/database/002_ships.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nodejs/database/002_ships.sql b/nodejs/database/002_ships.sql index 629f739..3ead742 100644 --- a/nodejs/database/002_ships.sql +++ b/nodejs/database/002_ships.sql @@ -3,4 +3,4 @@ CREATE TABLE ships ( data JSON NOT NULL, updated DATE DEFAULT NULL ); -CREATE UNIQUE INDEX ships_data_symbol on ships (json_extract(data, '$.symbol')); +CREATE UNIQUE INDEX ships_data_symbol ON ships (json_extract(data, '$.symbol')); |