UNPKG
@wbce-d9/schema
Version:
latest (10.0.0)
10.0.0
9.26.4
9.26.3
Utility for extracting information about existing DB schema
directus.io
LaWebcapsule/directus9
@wbce-d9/schema
/
dist
/
types
/
table.d.ts
11 lines
(10 loc)
•
200 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
Table
{
name
:
string
;
comment
?:
string
|
null
;
schema
?:
string
;
collation
?:
string
;
engine
?:
string
;
owner
?:
string
;
sql
?:
string
;
catalog
?:
string
; }