| 12345678910111213141516171819202122232425 |
- "use strict";
- module.exports = {
- up: (queryInterface, Sequelize) => {
- return queryInterface.createTable("admin_site", {
- id: {
- primaryKey: true,
- autoIncrement: true,
- type: Sequelize.BIGINT.UNSIGNED,
- },
- admin_id: {
- type: Sequelize.BIGINT.UNSIGNED,
- allowNull: false,
- },
- site_id: {
- type: Sequelize.BIGINT.UNSIGNED,
- allowNull: false,
- },
- });
- },
- down: (queryInterface, Sequelize) => {
- return queryInterface.dropTable("admin_site");
- },
- };
|