ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0610-views-index copy.ts 373 B

1234567891011121314151617181920
  1. import * as Sequelize from 'sequelize'
  2. async function up (utils: {
  3. transaction: Sequelize.Transaction
  4. queryInterface: Sequelize.QueryInterface
  5. sequelize: Sequelize.Sequelize
  6. db: any
  7. }): Promise<void> {
  8. await utils.sequelize.query('DROP INDEX IF EXISTS video_views;')
  9. }
  10. function down (options) {
  11. throw new Error('Not implemented.')
  12. }
  13. export {
  14. up,
  15. down
  16. }