mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 01:07:04 +02:00
create jsonb column
This commit is contained in:
parent
0efa5685b8
commit
2af14e83a4
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user