Gitlab@Informatics

Skip to content
Snippets Groups Projects
Commit ae6e82a2 authored by Wittaya Judnguhlearm's avatar Wittaya Judnguhlearm
Browse files

fix with off

parent 38eaafcc
No related branches found
No related tags found
No related merge requests found
......@@ -31,11 +31,11 @@ __decorate([
__metadata("design:type", Number)
], Queue.prototype, "pageID", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'timestamp' }),
(0, typeorm_1.Column)({ type: 'timestamp', nullable: true }),
__metadata("design:type", Date)
], Queue.prototype, "startTime", void 0);
__decorate([
(0, typeorm_1.Column)({ type: 'timestamp' }),
(0, typeorm_1.Column)({ type: 'timestamp', nullable: true }),
__metadata("design:type", Date)
], Queue.prototype, "finishTime", void 0);
__decorate([
......
{"version":3,"file":"queue.entity.js","sourceRoot":"","sources":["../../../src/queues/entities/queue.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAiE;AAG1D,IAAM,KAAK,GAAX,MAAM,KAAK;CA2BjB,CAAA;AA3BY,sBAAK;AAEhB;IADC,IAAA,gCAAsB,GAAE;;sCACT;AAGhB;IADC,IAAA,gBAAM,GAAE;;wCACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;sCACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;qCACM;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BACnB,IAAI;wCAAC;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BAClB,IAAI;yCAAC;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;qCACzB;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;yCACrB;AAGnB;IADC,IAAA,gBAAM,GAAE;;+CACgB;gBA1Bd,KAAK;IADjB,IAAA,gBAAM,EAAC,OAAO,CAAC;GACH,KAAK,CA2BjB"}
\ No newline at end of file
{"version":3,"file":"queue.entity.js","sourceRoot":"","sources":["../../../src/queues/entities/queue.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAiE;AAG1D,IAAM,KAAK,GAAX,MAAM,KAAK;CA2BjB,CAAA;AA3BY,sBAAK;AAEhB;IADC,IAAA,gCAAsB,GAAE;;sCACT;AAGhB;IADC,IAAA,gBAAM,GAAE;;wCACS;AAGlB;IADC,IAAA,gBAAM,GAAE;;sCACO;AAGhB;IADC,IAAA,gBAAM,GAAE;;qCACM;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACnC,IAAI;wCAAC;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAClC,IAAI;yCAAC;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;qCACzB;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;yCACrB;AAGnB;IADC,IAAA,gBAAM,GAAE;;+CACgB;gBA1Bd,KAAK;IADjB,IAAA,gBAAM,EAAC,OAAO,CAAC;GACH,KAAK,CA2BjB"}
\ No newline at end of file
Source diff could not be displayed: it is too large. Options to address this: view the blob.
File added
......@@ -14,10 +14,10 @@ export class Queue {
@Column()
pageID: number;
@Column({ type: 'timestamp' })
@Column({ type: 'timestamp', nullable: true })
startTime: Date;
@Column({ type: 'timestamp' })
@Column({ type: 'timestamp', nullable: true })
finishTime: Date;
@Column({ type: 'varchar', length: 50 })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment