Skip to content

Commit

Permalink
refactor: The table names are changed to livesession and queuedmessage.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmatau79 committed Dec 20, 2024
1 parent 2061999 commit fe221a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/postgres/config/dbCollections.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const messagesTableName = 'storequeuedmessage'
export const messagesTableName = 'queuedmessage'

export const createTableMessage = `
CREATE TABLE IF NOT EXISTS ${messagesTableName} (
Expand All @@ -11,7 +11,7 @@ CREATE TABLE IF NOT EXISTS ${messagesTableName} (
);
`

export const liveSessionTableName = 'storelivesession'
export const liveSessionTableName = 'livesession'

export const createTableLive = `
CREATE TABLE IF NOT EXISTS ${liveSessionTableName} (
Expand Down

0 comments on commit fe221a6

Please sign in to comment.