(knex)
| 1 | export async function up(knex) { |
| 2 | await knex.schema.createTable('tests_flow_data', (table) => { |
| 3 | table.increments('id').primary(); |
| 4 | table.string('total_tests_count'); |
| 5 | }); |
| 6 | |
| 7 | await knex.schema.createTable('tests_flow_completed', (table) => { |
| 8 | table.increments('id').primary(); |
| 9 | table.string('test_file_path'); |
| 10 | }); |
| 11 | } |
| 12 | |
| 13 | export async function down(knex) { |
| 14 | await knex.schema.dropTable('tests_flow_data'); |