slate/scripts/adjust.js
2020-12-01 23:07:54 -08:00

22 lines
624 B
JavaScript

import configs from "~/knexfile";
import knex from "knex";
const envConfig = configs["development"];
console.log(`SETUP: database`, envConfig);
const db = knex(envConfig);
console.log(`RUNNING: adjust.js`);
const createGlobalTable = db.schema.createTable("global", function (table) {
table.uuid("id").primary().unique().notNullable().defaultTo(db.raw("uuid_generate_v4()"));
table.jsonb("data").nullable();
table.timestamp("created_at").notNullable().defaultTo(db.raw("now()"));
});
Promise.all([createGlobalTable]);
console.log(`FINISHED: adjust.js`);
console.log(` CTRL +C to return to terminal.`);