mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
table/sql_table: Fix incorrect for PostgreSQL type being used in table creation
See #386.
This commit is contained in:
parent
37fc5d2d78
commit
cbb64b6127
1 changed files with 2 additions and 2 deletions
|
@ -136,8 +136,8 @@ func (s *SQLTable) Init(cfg *config.Map) error {
|
||||||
{
|
{
|
||||||
Name: "init",
|
Name: "init",
|
||||||
Args: []string{fmt.Sprintf(`CREATE TABLE IF NOT EXISTS %s (
|
Args: []string{fmt.Sprintf(`CREATE TABLE IF NOT EXISTS %s (
|
||||||
%s LONGTEXT PRIMARY KEY NOT NULL,
|
%s TEXT PRIMARY KEY NOT NULL,
|
||||||
%s LONGTEXT NOT NULL
|
%s TEXT NOT NULL
|
||||||
)`, tableName, keyColumn, valueColumn)},
|
)`, tableName, keyColumn, valueColumn)},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue