()
| 42 | } |
| 43 | |
| 44 | public async createTemplate() { |
| 45 | ConnectionManager.getConnection(this, true); |
| 46 | const filePath=await FileManager.record(`${this.info.id}#create-table-template.sql`,`CREATE TABLE [name]( |
| 47 | id int NOT NULL primary key AUTO_INCREMENT comment 'primary key', |
| 48 | created_time DATETIME COMMENT 'created tiem', |
| 49 | updated_time DATETIME COMMENT 'updated tiem', |
| 50 | [column] varchar(255) comment '' |
| 51 | ) default charset utf8 comment '';`,FileModel.WRITE) |
| 52 | FileManager.show(filePath) |
| 53 | |
| 54 | } |
| 55 | } |
nothing calls this directly
no test coverage detected