UNPKG

nexorm

Version:

A powerful TypeScript ORM with advanced features.

15 lines (14 loc) 318 B
export interface NexormSchema { allowNull?: boolean; autoIncrement?: boolean; defaultValue?: any; primaryKey?: boolean; unique?: boolean; index?: boolean; foreignKey?: boolean; references?: string; onUpdate?: string; onDelete?: string; type?: string; length?: number; }