HStore decorator for PostgreSQL HStore columns
Optional
Optional HStore column options
// Basic HStore column class Product extends Model {
@HStore() attributes: Record<string, string>; Copy
@HStore() attributes: Record<string, string>;
}
// With options class Product extends Model {
@HStore({ allowNull: false }) metadata: Record<string, any>; Copy
@HStore({ allowNull: false }) metadata: Record<string, any>;
HStore decorator for PostgreSQL HStore columns