create jsonb column

This commit is contained in:
Charlie Kolb 2025-10-28 16:28:26 +01:00
parent 0efa5685b8
commit 2af14e83a4
No known key found for this signature in database

View File

@ -3584,7 +3584,12 @@ describe('dataTable', () => {
const { id: dataStoreId } = await dataTableService.createDataTable(project1.id, {
name: 'dataStore',
columns: [{ name: 'c1', type: 'json' }],
columns: [], // [{ name: 'c1', type: 'json' }],
});
await dataTableService.addColumn(dataStoreId, project1.id, {
name: 'c1',
type: 'json',
});
// ACT