-
-
Save nomoney4me/dbbd5f00275ece2463625615b4ac4a4b 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
| let populateTables = () => { | |
| // return knex('plans').insert({state:'testing'}) | |
| return knex.transaction(trx => { | |
| fs.createReadStream('./plans.csv') | |
| .pipe(csv()) | |
| .on('data', data => { | |
| return trx.insert(data).into('plans') | |
| }) | |
| .on('end', data => { | |
| }) | |
| }) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment