export default interface TableTypes {
    temporary?: boolean;
    unlogged?: boolean;
    inherits?: string[];
    onCommit?: 'PRESERVE ROWS' | 'DELETE ROWS' | 'DROP';
    tablespace?: string;
    primaryKey: string;
}
