Skip to content

Commit

Permalink
feat(back): drop historic_focus table
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremiejade committed Jan 17, 2025
1 parent 568f664 commit 73eeaf6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions api/db/migrations/20250117132855_drop-historic-focus-table.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const TABLE_NAME = 'historic_focus';

/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
export async function up(knex) {
await knex.schema.dropTable(TABLE_NAME);
}

/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
export async function down(knex) {}

0 comments on commit 73eeaf6

Please # to comment.