Skip to content

Commit

Permalink
init.js revisited (#538)
Browse files Browse the repository at this point in the history
* init.js revisited

* Reverting rm sqlite3

* .

---------

Co-authored-by: Johannes Vogel <31311694+johannes-vogel@users.noreply.github.com>
  • Loading branch information
danjoa and johannes-vogel committed Jul 5, 2023
1 parent 96473d4 commit 11770f6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions bookshop/db/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
* currencies, if not obtained through @capire/common.
*/

module.exports = async (tx)=>{
const has_common = tx.model.definitions['sap.common.Currencies']?.elements.numcode
if (has_common) return

await UPSERT.into ('sap.common.Currencies') .columns (
// NOTE: We use cds.on('served') to delay the UPSERTs after the db init
// to run after all INSERTs from .csv files happened.
module.exports = cds.on('served', ()=> cds.run(
UPSERT.into ('sap.common.Currencies') .columns (
[ 'code', 'symbol', 'name' ]
) .rows (
[ 'EUR', '€', 'Euro' ],
Expand All @@ -17,4 +16,4 @@ module.exports = async (tx)=>{
[ 'ILS', '₪', 'Shekel' ],
[ 'JPY', '¥', 'Yen' ],
)
}
))

0 comments on commit 11770f6

Please sign in to comment.