Skip to content

Commit

Permalink
add anndata tech
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Pickering <[email protected]>
  • Loading branch information
alexvpickering committed Sep 25, 2024
1 parent a4f8e88 commit 5327f8b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions migrations/sql/20240923171424_add_anndata_technology.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.up = async (knex) => {
await knex.raw("ALTER TYPE sample_technology ADD VALUE 'anndata_object';");
await knex.raw("ALTER TYPE sample_file_type ADD VALUE 'anndata_object';");
};

/**
* @returns { Promise < void> }
*/
exports.down = async () => { };

0 comments on commit 5327f8b

Please sign in to comment.