(path: string, schema: SpaceTableSchema)
| 210 | } |
| 211 | |
| 212 | public createTable (path: string, schema: SpaceTableSchema) { |
| 213 | |
| 214 | return this.adapterForPath(path).createTable(path, schema).then(f => |
| 215 | this.superstate.reloadContextByPath(path, { force: true, calculate: true })); |
| 216 | } |
| 217 | |
| 218 | public saveTableSchema (path: string, schemaId: string, saveSchema: (prev: SpaceTableSchema) => SpaceTableSchema) { |
| 219 |
nothing calls this directly
no test coverage detected