UNPKG

open-music-api-node

Version:
17 lines (13 loc) 264 B
/* eslint-disable camelcase */ exports.shorthands = undefined; exports.up = (pgm) => { pgm.createTable('authentications', { token: { type: 'TEXT', notNull: true, }, }); }; exports.down = (pgm) => { pgm.dropTable('authentications'); };