@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.
- 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/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 +10 -0
- 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 +2 -0
- package/package.json +1 -1
@@ -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
|
};
|