We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b983da commit ef6d326Copy full SHA for ef6d326
packages/backend/src/models/tiles/pg/table-functions.ts
@@ -4,7 +4,7 @@ export function createTable(tableId: string, columnIds: string[]) {
4
return tilesClient.schema.createTable(tableId, (table) => {
5
table.string('rowId').primary()
6
columnIds.forEach((columnId) => {
7
- table.string(columnId)
+ table.text(columnId)
8
})
9
table.timestamps(true, true, true)
10
0 commit comments