automatisch / packages /backend /src /db /migrations /20211122140336_create_flows.js
musarehmani100's picture
Upload folder using huggingface_hub
3206347 verified
export async function up(knex) {
return knex.schema.createTable('flows', (table) => {
table.uuid('id').primary().defaultTo(knex.raw('gen_random_uuid()'));
table.string('name');
table.uuid('user_id').references('id').inTable('users');
table.timestamps(true, true);
});
}
export async function down(knex) {
return knex.schema.dropTable('flows');
}