Created
November 23, 2018 20:13
-
-
Save nomoney4me/3e7b9c0f0a2079ea1d8416ab17b8c890 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const knex = require('knex')({ | |
| client: 'sqlite3', | |
| connection: { | |
| filename: 'test.db' | |
| }, | |
| debug: true | |
| }) | |
| knex.schema.createTable('testing', (tbl) => { | |
| tbl.increments() | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment