Closed jcotton42 closed 2 years ago
The table.string method from knex uses varchar(255) for the column. The text type in Postgres allows strings of any length, which in kndx is table.text.
table.string
varchar(255)
text
table.text
The
table.string
method from knex usesvarchar(255)
for the column. Thetext
type in Postgres allows strings of any length, which in kndx istable.text
.