@dbos-inc/dbos-sdk 2.1.12-preview → 2.1.14-preview

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ exports.up = function (knex) {
2
+ return knex.schema.withSchema('dbos')
3
+ .table('workflow_queue', function (table) {
4
+ table.text('executor_id');
5
+ });
6
+ };
7
+
8
+ exports.down = function (knex) {
9
+ return knex.schema.withSchema('dbos')
10
+ .table('workflow_queue', function (table) {
11
+ table.dropColumn('executor_id');
12
+ });
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbos-inc/dbos-sdk",
3
- "version": "2.1.12-preview",
3
+ "version": "2.1.14-preview",
4
4
  "description": "A Typescript framework built on the database",
5
5
  "license": "MIT",
6
6
  "repository": {