table/sql_table: Fix incorrect for PostgreSQL type being used in table creation

See #386.
This commit is contained in:
fox.cpp 2021-08-21 09:23:29 +03:00
parent 37fc5d2d78
commit cbb64b6127
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -136,8 +136,8 @@ func (s *SQLTable) Init(cfg *config.Map) error {
{
Name: "init",
Args: []string{fmt.Sprintf(`CREATE TABLE IF NOT EXISTS %s (
%s LONGTEXT PRIMARY KEY NOT NULL,
%s LONGTEXT NOT NULL
%s TEXT PRIMARY KEY NOT NULL,
%s TEXT NOT NULL
)`, tableName, keyColumn, valueColumn)},
},
},