mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-22 21:45:56 +03:00
22 lines
623 B
JavaScript
22 lines
623 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("createdAt").notNullable().defaultTo(db.raw("now()"));
|
|
});
|
|
|
|
Promise.all([createGlobalTable]);
|
|
|
|
console.log(`FINISHED: adjust.js`);
|
|
console.log(` CTRL +C to return to terminal.`);
|