登录
首页 >  文章 >  前端

连续迁移

时间:2025-01-11 12:03:41 193浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《连续迁移》,聊聊,我们一起来看看吧!

本文介绍如何使用 Sequelize 迁移来修改数据库表结构,特别是针对一个名为 metadata 的表进行列重命名和删除操作。

首先,我们有一个 Sequelize 模型定义:

module.exports = (sequelize, sequelize) => {
    const metadata = sequelize.define("metadata", {
      id: {
        type: sequelize.integer,
        primaryKey: true,
        autoIncrement: true
      },     
      urgencyid: {
        type: sequelize.integer,
        allowNull: true
      },      
      dataid: {
        type: sequelize.integer,
        allowNull: true
      },      
      tasktypeid: {
        type: sequelize.integer,
        allowNull: true
      },  
      projectid: {
        type: sequelize.integer,
        allowNull: true
      },
      data_id: {
        type: sequelize.integer,
        allowNull: true
      },    
    });
    metadata.associate = function (models) {
      metadata.belongsTo(models.data,{
        foreignKey: {
          name: 'data_id',
          allowNull: false,
          hooks: true
        },
        onDelete: 'cascade'

      });

    };

    return metadata;
  };

我们希望将 urgencyid, tasktypeid, projectid 列重命名为 urgency_id, task_type_id, project_id,并删除 dataid 列。 Sequelize 迁移提供了一种安全可靠的方式来执行这些数据库更改。

使用命令 npx sequelize-cli migration:generate --name data-columns-rename 创建一个迁移文件。 该文件包含 updown 方法,分别用于执行更改和撤销更改。

生成的迁移文件内容如下:

'use strict';

/** @type {import('sequelize-cli').migration} */
module.exports = {
  async up (queryInterface, Sequelize) {
    await queryInterface.removeColumn('metadata','dataid');
    await queryInterface.renameColumn('metadata','urgencyid','urgency_id');
    await queryInterface.renameColumn('metadata','tasktypeid','task_type_id');
    await queryInterface.renameColumn('metadata','projectid','project_id');
  },

  async down (queryInterface, Sequelize) {
    await queryInterface.addColumn('metadata','dataid', {
      type: Sequelize.INTEGER,
      allowNull: false
    });
    await queryInterface.renameColumn('metadata','urgency_id','urgencyid');
    await queryInterface.renameColumn('metadata','task_type_id','tasktypeid');
    await queryInterface.renameColumn('metadata','project_id','projectid');
  }
};

up 方法删除 dataid 列,并将其他三列重命名。 down 方法则执行相反的操作,用于回滚迁移。

最后,使用命令 npx sequelize-cli db:migrate 执行迁移。 成功执行后,输出将显示类似 == 20241224113716-metadata-columns-rename: migrated (0.065s) 的信息。

下图展示了迁移后的数据库表结构 (DBeaver 截图):

连续迁移

本文清晰地阐述了 Sequelize 迁移的用法,并提供了完整的代码示例和执行结果,方便读者理解和实践。 如有需要,可以进一步扩展,介绍 Sequelize 的更多高级特性。

本篇关于《连续迁移》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>