UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

13 lines (12 loc) 351 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NullColumn = NullColumn; const typeorm_1 = require("typeorm"); function NullColumn(options) { return function (object, propertyName) { (0, typeorm_1.Column)({ nullable: true, ...options, })(object, propertyName); }; }