MCPcopy Index your code
hub / github.com/sequelize/sequelize-auto / run

Method run

src/auto.ts:50–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

48 }
49
50 async run(): Promise<TableData> {
51 let td = await this.build();
52 td = this.relate(td);
53 const tt = this.generate(td);
54 td.text = tt;
55 await this.write(td);
56 return td;
57 }
58
59 build(): Promise<TableData> {
60 const builder = new AutoBuilder(this.sequelize, this.options);

Callers

nothing calls this directly

Calls 4

buildMethod · 0.95
relateMethod · 0.95
generateMethod · 0.95
writeMethod · 0.95

Tested by

no test coverage detected