migrations_directory - 迁移脚本目录配置
默认的迁移脚本目录是项目根目录下的./migrations
子目录。可以
使用migrations_directory
配置进行修改。
配置示例
下面的配置使用./allMyStuff/someStuff/theMigrationsFolder
目录中
的迁移脚本:
module.exports = {
migrations_directory: "./allMyStuff/someStuff/theMigrationsFolder",
networks: {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*",
}
}
};