@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.
- package/dist/src/dbos-executor.d.ts.map +1 -1
- package/dist/src/dbos-executor.js +1 -0
- package/dist/src/dbos-executor.js.map +1 -1
- package/dist/src/debugger/debug_workflow.d.ts +1 -0
- package/dist/src/debugger/debug_workflow.d.ts.map +1 -1
- package/dist/src/debugger/debug_workflow.js +4 -0
- package/dist/src/debugger/debug_workflow.js.map +1 -1
- package/dist/src/httpServer/handler.d.ts.map +1 -1
- package/dist/src/httpServer/handler.js +1 -0
- package/dist/src/httpServer/handler.js.map +1 -1
- package/dist/src/system_database.d.ts +2 -0
- package/dist/src/system_database.d.ts.map +1 -1
- package/dist/src/system_database.js +14 -0
- package/dist/src/system_database.js.map +1 -1
- package/dist/src/workflow.d.ts +5 -0
- package/dist/src/workflow.d.ts.map +1 -1
- package/dist/src/workflow.js +20 -2
- package/dist/src/workflow.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/examples/hello/migrations/20240212161006_create_dbos_hello_tables.js +0 -1
- package/package.json +1 -1
@@ -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
|
});
|