UNPKG

open-music-api-node

Version:
12 lines (8 loc) 290 B
/* eslint-disable camelcase */ exports.shorthands = undefined; exports.up = (pgm) => { pgm.addConstraint('songs', 'fk_songs_album_id', 'FOREIGN KEY(album_id) REFERENCES albums(id) ON DELETE CASCADE'); }; exports.down = (pgm) => { pgm.dropConstraint('songs', 'fk_songs_album_id'); };