diff --git a/bun.lockb b/bun.lockb index 2e06ff644f..cb32c781b3 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/packages/postgres/migrations/01_message.sql b/packages/postgres/migrations/01_message.sql index c6b56b210f..6fc4306cd0 100644 --- a/packages/postgres/migrations/01_message.sql +++ b/packages/postgres/migrations/01_message.sql @@ -16,4 +16,4 @@ CREATE TABLE IF NOT EXISTS message_place message_id INT8 NOT NULL, PRIMARY KEY (workspace_id, card_id, message_id) -); \ No newline at end of file +); diff --git a/packages/postgres/migrations/02_attachment.sql b/packages/postgres/migrations/02_attachment.sql index d7753e0a37..3ce4847323 100644 --- a/packages/postgres/migrations/02_attachment.sql +++ b/packages/postgres/migrations/02_attachment.sql @@ -8,4 +8,4 @@ CREATE TABLE IF NOT EXISTS attachment PRIMARY KEY (message_id, card_id) ); -CREATE INDEX IF NOT EXISTS attachment_message_idx ON attachment (message_id); \ No newline at end of file +CREATE INDEX IF NOT EXISTS attachment_message_idx ON attachment (message_id); diff --git a/packages/postgres/migrations/04_notification.sql b/packages/postgres/migrations/04_notification.sql index 8daba79921..990e1e51ff 100644 --- a/packages/postgres/migrations/04_notification.sql +++ b/packages/postgres/migrations/04_notification.sql @@ -7,4 +7,4 @@ CREATE TABLE IF NOT EXISTS notification archived BOOLEAN NOT NULL DEFAULT false, PRIMARY KEY (social_id, message_id) -); \ No newline at end of file +); diff --git a/packages/postgres/migrations/05_notificationContext.sql b/packages/postgres/migrations/05_notificationContext.sql index 3f4b05678b..a432c17fdd 100644 --- a/packages/postgres/migrations/05_notificationContext.sql +++ b/packages/postgres/migrations/05_notificationContext.sql @@ -8,4 +8,4 @@ CREATE TABLE IF NOT EXISTS notification_context last_update_timestamp TIMESTAMP, PRIMARY KEY (workspace_id, card_id, huly_id) -); \ No newline at end of file +); diff --git a/packages/postgres/package.json b/packages/postgres/package.json index bd008cd7ea..3a7faecac7 100644 --- a/packages/postgres/package.json +++ b/packages/postgres/package.json @@ -7,10 +7,9 @@ "@types/bun": "^1.1.13" }, "dependencies": { - "@communication/types": "0.1.0", + "@communication/types": "workspace:*", "pg": "8.12.0", - "postgres": "^3.4.4", - "uuid": "^11.0.3" + "postgres": "^3.4.4" }, "peerDependencies": { "typescript": "^5.6.3"