mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 14:07:20 +03:00
16 lines
396 B
JavaScript
16 lines
396 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: drop-database.js`);
|
||
|
|
||
|
Promise.all([db.schema.dropTable("users"), db.schema.dropTable("slates")]);
|
||
|
|
||
|
console.log(`FINISHED: drop-database.js`);
|
||
|
console.log(` CTRL +C to return to terminal.`);
|