* draft * reordering * JIT Index stars on first load * test * Remove unused code on client * small unrefactor
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("stars", "index", {
|
|
type: Sequelize.STRING,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
down: async (queryInterface) => {
|
|
await queryInterface.removeColumn("stars", "index");
|
|
},
|
|
};
|