@dbos-inc/dbos-sdk 0.10.13-preview → 0.10.16-preview

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,8 @@ const { Knex } = require("knex");
3
3
  exports.up = async function(knex) {
4
4
  return knex.schema.createTable('dbos_hello', table => {
5
5
  table.text('name').primary();
6
+ table.text('greeting_name');
7
+ table.text('greeting_note_content');
6
8
  table.integer('greet_count').defaultTo(0);
7
9
  });
8
10
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbos-inc/dbos-sdk",
3
- "version": "0.10.13-preview",
3
+ "version": "0.10.16-preview",
4
4
  "description": "A Typescript framework built on the database",
5
5
  "license": "MIT",
6
6
  "repository": {