dsi-icl/optimise

View on GitHub
packages/optimise-core/src/db/conditions.table.js

Summary

Maintainability
B
6 hrs
Test Coverage
import conditions from './defaults_v1/conditions.json';

export const TABLE_NAME = 'CONDITIONS';
export const PRIORITY = 0;
export default async (dbcon, version) => {
    switch (version) {
        case 1:
            await dbcon().schema.createTable(TABLE_NAME, (table) => {
                table.increments('id').primary().notNullable();
                table.text('value').notNullable();
                table.text('deleted').notNullable().defaultTo('-');
                table.unique(['value', 'deleted'], `UNIQUE_${Date.now()}_${TABLE_NAME}`);
            });
            await dbcon()(TABLE_NAME).insert(conditions);
            break;
        default:
            break;
    }
};