Method
dropTrigger
(schemaName: string, name: string)
Source from the content-addressed store, hash-verified
| 278 | } |
| 279 | |
| 280 | dropTrigger(schemaName: string, name: string): string { |
| 281 | return `DROP TRIGGER IF EXISTS ${this.escapeId(schemaName)}.${this.escapeId(name)}`; |
| 282 | } |
| 283 | |
| 284 | async view(schemaName: string, name: string): Promise<DatabaseViewSchema> { |
| 285 | const sql = `SELECT * FROM ${this.escapeId(schemaName)}.sqlite_schema WHERE type = 'view' AND name = ${this.escapeValue(name)};`; |
Callers
nothing calls this directly
Tested by
no test coverage detected