@dbos-inc/dbos-sdk 1.15.7-preview → 1.15.8-preview

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