MCPcopy Create free account
hub / github.com/sequelize/sequelize-typescript / Setting

Class Setting

test/specs/instance.spec.ts:1830–1846  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1828
1829 it('returns null for null, undefined, and unset boolean values', () => {
1830 @Table({ logging: true } as TableOptions)
1831 class Setting extends Model {
1832 @Column
1833 settingKey: string;
1834
1835 @AllowNull
1836 @Column
1837 boolValue: boolean;
1838
1839 @AllowNull
1840 @Column
1841 boolValue2: boolean;
1842
1843 @AllowNull
1844 @Column
1845 boolValue3: boolean;
1846 }
1847
1848 sequelize.addModels([Setting]);
1849

Callers

nothing calls this directly

Calls 1

TableFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…