2020-02-20 15:22:33 +01:00
|
|
|
/* eslint-disable no-console */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const dot_parser = require ('../snippets/db/dot_parser');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test
|
|
|
|
*/
|
|
|
|
async function test () {
|
2020-02-21 11:29:50 +01:00
|
|
|
const data = await dot_parser.create_migration ('db_structure.dot');
|
|
|
|
console.log (data);
|
2020-02-20 15:22:33 +01:00
|
|
|
}
|
|
|
|
test ();
|