@experts_hub/shared 1.0.43 → 1.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -621,7 +621,7 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
|
621
621
|
var Question = class extends BaseEntity {
|
|
622
622
|
};
|
|
623
623
|
__decorateClass([
|
|
624
|
-
(0, import_typeorm6.Column)({ name: "question_id", type: "
|
|
624
|
+
(0, import_typeorm6.Column)({ name: "question_id", type: "integer" })
|
|
625
625
|
], Question.prototype, "questionId", 2);
|
|
626
626
|
__decorateClass([
|
|
627
627
|
(0, import_typeorm6.Column)({ name: "question", type: "varchar", unique: true })
|
package/dist/index.mjs
CHANGED
|
@@ -616,7 +616,7 @@ var QuestionFor = /* @__PURE__ */ ((QuestionFor2) => {
|
|
|
616
616
|
var Question = class extends BaseEntity {
|
|
617
617
|
};
|
|
618
618
|
__decorateClass([
|
|
619
|
-
Column6({ name: "question_id", type: "
|
|
619
|
+
Column6({ name: "question_id", type: "integer" })
|
|
620
620
|
], Question.prototype, "questionId", 2);
|
|
621
621
|
__decorateClass([
|
|
622
622
|
Column6({ name: "question", type: "varchar", unique: true })
|