@Comment decorator for database schema annotations
@Comment
Provides the ability to add comments to various database objects:
Usage:
@Comment('This table stores user information') class User extends Model { ... } @Column @Comment('User unique identifier') id: number; @Column @Comment('User email address') email: string; Copy
@Comment('This table stores user information') class User extends Model { ... } @Column @Comment('User unique identifier') id: number; @Column @Comment('User email address') email: string;
@Commentdecorator for database schema annotationsProvides the ability to add comments to various database objects:
Usage: