@dbos-inc/dbos-sdk 0.10.15-preview → 0.10.18-preview

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,6 @@ 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
6
  table.text('greeting_note_content');
8
7
  table.integer('greet_count').defaultTo(0);
9
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbos-inc/dbos-sdk",
3
- "version": "0.10.15-preview",
3
+ "version": "0.10.18-preview",
4
4
  "description": "A Typescript framework built on the database",
5
5
  "license": "MIT",
6
6
  "repository": {