feat: Implement draft version of Step model

This commit is contained in:
Faruk AYDIN
2021-11-06 23:38:37 +01:00
committed by Ömer Faruk Aydın
parent a3dd76df21
commit c48c905805
5 changed files with 118 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
import { Knex } from "knex";
export async function up(knex: Knex): Promise<void> {
return knex.schema.createTable('steps', (table) => {
table.increments('id');
table.string('key').notNullable();
table.string('app_key').notNullable();
table.string('type').notNullable();
table.integer('connection_id').references('id').inTable('connections');
table.text('parameters')
table.timestamps(true, true);
});
};
export async function down(knex: Knex): Promise<void> {
return knex.schema.dropTable('steps');
}