@servicelabsco/nestjs-utility-services 1.1.94 → 1.1.95
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/migrations/1598275443562-CreateDocumentTable.js +1 -1
- package/dist/migrations/1598275443562-CreateDocumentTable.js.map +1 -1
- package/dist/migrations/1598276044380-CreateCommentTable.js +1 -1
- package/dist/migrations/1598276044380-CreateCommentTable.js.map +1 -1
- package/package.json +1 -1
@@ -10,7 +10,7 @@ class CreateDocumentTable1598275443562 extends migration_utility_1.MigrationUtil
|
|
10
10
|
process() {
|
11
11
|
this.primary();
|
12
12
|
this.source();
|
13
|
-
this.string('document_url');
|
13
|
+
this.string('document_url', { width: 1024 });
|
14
14
|
this.foreign({ name: 'type_id', foreignTable: 'sys_lookup_values' });
|
15
15
|
this.json('attributes');
|
16
16
|
this.whoColumns();
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"1598275443562-CreateDocumentTable.js","sourceRoot":"","sources":["../../src/migrations/1598275443562-CreateDocumentTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,gCAAiC,SAAQ,oCAAgB;IAClE;QACI,KAAK,CAAC,eAAe,CAAC,CAAC;QACvB,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QAEf,IAAI,CAAC,MAAM,EAAE,CAAC;QAEd,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"1598275443562-CreateDocumentTable.js","sourceRoot":"","sources":["../../src/migrations/1598275443562-CreateDocumentTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,gCAAiC,SAAQ,oCAAgB;IAClE;QACI,KAAK,CAAC,eAAe,CAAC,CAAC;QACvB,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QAEf,IAAI,CAAC,MAAM,EAAE,CAAC;QAEd,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;QAE7C,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,YAAY,EAAE,mBAAmB,EAAE,CAAC,CAAC;QAErE,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,EAAE,CAAC;IACtB,CAAC;CACJ;AAlBD,4EAkBC"}
|
@@ -10,7 +10,7 @@ class CreateCommentTable1598276044380 extends migration_utility_1.MigrationUtili
|
|
10
10
|
process() {
|
11
11
|
this.primary();
|
12
12
|
this.source();
|
13
|
-
this.string('comments');
|
13
|
+
this.string('comments', { width: 1024 });
|
14
14
|
this.json('attributes');
|
15
15
|
this.whoColumns();
|
16
16
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"1598276044380-CreateCommentTable.js","sourceRoot":"","sources":["../../src/migrations/1598276044380-CreateCommentTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,+BAAgC,SAAQ,oCAAgB;IACjE;QACI,KAAK,CAAC,cAAc,CAAC,CAAC;QACtB,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QAEf,IAAI,CAAC,MAAM,EAAE,CAAC;QAEd,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"1598276044380-CreateCommentTable.js","sourceRoot":"","sources":["../../src/migrations/1598276044380-CreateCommentTable.ts"],"names":[],"mappings":";;;AAAA,6EAAyE;AAEzE,MAAa,+BAAgC,SAAQ,oCAAgB;IACjE;QACI,KAAK,CAAC,cAAc,CAAC,CAAC;QACtB,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAED,OAAO;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;QAEf,IAAI,CAAC,MAAM,EAAE,CAAC;QAEd,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;QAEzC,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACxB,IAAI,CAAC,UAAU,EAAE,CAAC;IACtB,CAAC;CACJ;AAhBD,0EAgBC"}
|
package/package.json
CHANGED