* Add simple count of views to share links * Remove no longer applicable tests * Avoid incrementing view count for known bots
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("shares", "views", {
|
|
type: Sequelize.INTEGER,
|
|
defaultValue: 0
|
|
});
|
|
},
|
|
down: async (queryInterface) => {
|
|
await queryInterface.removeColumn("shares", "views");
|
|
},
|
|
};
|