@dbos-inc/dbos-sdk 1.26.8-preview.g91ca9cd13d → 1.27.3-preview

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ exports.up = function(knex) {
2
+ return knex.schema.withSchema('dbos')
3
+ .createTable('event_dispatch_kv', function(table) {
4
+ table.text('service_name').notNullable();
5
+ table.text('workflow_fn_name').notNullable();
6
+ table.text('key').notNullable();
7
+ table.text('value');
8
+ table.decimal('update_seq', 38, 0);
9
+ table.decimal('update_time', 38, 15);
10
+ table.primary(['service_name','workflow_fn_name','key']);
11
+ })
12
+ };
13
+
14
+ exports.down = function(knex) {
15
+ return knex.schema.withSchema('dbos')
16
+ .dropTableIfExists('event_dispatch_kv');
17
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbos-inc/dbos-sdk",
3
- "version": "1.26.8-preview.g91ca9cd13d",
3
+ "version": "1.27.3-preview",
4
4
  "description": "A Typescript framework built on the database",
5
5
  "license": "MIT",
6
6
  "repository": {