()
| 91 | * Creates the database tables using the schema. |
| 92 | */ |
| 93 | const initialiseDatabase = async () => { |
| 94 | console.log( 'Creating tables\n'.subheader ) |
| 95 | await createSchema( knex ) |
| 96 | console.log( 'Created tables successfully'.success ) |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Imports any simple tables into the database. |
no test coverage detected
searching dependent graphs…