9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-25 17:49:20 +00:00

fix: wrong type in PostgreSQL schema (#299)

* Started impl for mongo

* fix silly mistake with postgresql

* fix silly mistake with postgresql
This commit is contained in:
Preva1l
2024-05-11 04:06:34 +10:00
committed by GitHub
parent 75f8bee706
commit 2b1e72a42e

View File

@@ -15,7 +15,7 @@ CREATE TABLE IF NOT EXISTS "%user_data_table%"
timestamp timestamp NOT NULL,
save_cause varchar(32) NOT NULL,
pinned boolean NOT NULL DEFAULT FALSE,
data longblob NOT NULL,
data bytea NOT NULL,
PRIMARY KEY (version_uuid, player_uuid),
FOREIGN KEY (player_uuid) REFERENCES "%users_table%" (uuid) ON DELETE CASCADE