Skip to content

Commit

Permalink
chore(sql): drop namespace from sqlTableName
Browse files Browse the repository at this point in the history
Surely this won't introduce problems in the future..?
  • Loading branch information
SIMULATAN committed Jan 27, 2025
1 parent 8217433 commit 9876464
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.jetbrains.exposed.sql.Column
import org.jetbrains.exposed.sql.Table

fun NodeDescriptor.sqlTableName(suffixName: String)
= "nodes:${namespace}.${name}:${suffixName}".quoted()
= "nodes:${name}:${suffixName}".quoted()

/**
* [4.1. Lexical Structure - 4.1.1. Identifiers and Key Words](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS)
Expand Down

0 comments on commit 9876464

Please sign in to comment.