Laravel更改迁移顺序

时间:2015-09-11 12:58:23

标签: laravel-5 migration

有没有办法在不重新制作迁移顺序的情况下更改迁移顺序?因为现在我的外键有问题-_-(使用laravel)

5 个答案:

答案 0 :(得分:39)

  1. 回滚所有迁移(或从新数据库开始);

  2. 更改构成迁移文件名第一部分的日期,使其符合您的要求(例如2014_06_24_134109_update_database.php,日期和时间为2014-06-24,13 :41:09);

  3. 再次运行迁移。

  4. 关于你对外键的评论......我不确定问题出在Laravel上。更有可能的是,它只是MySQL。

    我避免使用外键,因为一旦你得到一组中等复杂的关系,就会开始遇到数据库一致性问题,就像你所看到的那样 - 服务器很难弄清楚创建表格的顺序是什么?关系中,它开始导致诸如转储文件(用于备份)之类的问题。

答案 1 :(得分:5)

您必须创建一个自定义命令来执行 php artisan migrate:refresh --path=/database/migrations/name_migration.php重复使用您想要的迁移名称。

赞:

  1. 使用以下命令创建Command类:php artisan make:command NameClass
  2. 转到app/Console/Commands/并找到类文件NameClass.php
  3. 在NameClass.php中,您具有两个属性$signature(命令的名称)和$description(有关命令的作用的信息)。
  4. 设置命令的名称和描述。Ex: protected $signature='namecommand'; protected $descripton = 'This method migrate tables in order'
  5. 在NameClass.php中,您有一个名为handle()的方法,在这里您必须声明要在编写命令时执行的代码。
  6. 注册您的命令。转到app/Console/Kernel.php and,将您的类添加到“命令类”列表中。 protected $commands = [ Commands\NameClass::class, ];
  7. 在终端中编写命令。 php artisan namecommand

示例:

  1. php artisan make:command MigrateInOrder

  2. app / Console / Commands / MigrateInOrder.php

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class MigrateInOrder extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'migrate_in_order';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Execute the migrations in the order specified in the file app/Console/Comands/MigrateInOrder.php \n Drop all the table in db before execute the command.';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
       /** Specify the names of the migrations files in the order you want to 
        * loaded
        * $migrations =[ 
        *               'xxxx_xx_xx_000000_create_nameTable_table.php',
        *    ];
        */
        $migrations = [ 
                        '2020_04_18_005024_create_users_types.php',
                        '2014_10_12_000000_create_users_table.php',
                        '2014_10_12_100000_create_password_resets_table.php',
                        '2019_08_19_000000_create_failed_jobs_table.php'
        ];

        foreach($migrations as $migration)
        {
           $basePath = 'database/migrations/';          
           $migrationName = trim($migration);
           $path = $basePath.$migrationName;
           $this->call('migrate:refresh', [
            '--path' => $path ,            
           ]);
        }
    }
} 
  1. 转到app / Console / Kernel.php并注册命令
    protected $commands = [
        Commands\MigrateInOrder::class,
    ];
  1. 执行命令
   php artisan migrate_in_order

答案 2 :(得分:1)

最好和最简单的方法是将迁移重命名为 yyyy_mm_dd_hhmmss_migration_name。如果你的迁移遵循这个顺序,Laravel 将确保运行迁移是按日期排序的,

答案 3 :(得分:0)

从 PhpMyAdmin 中汲取灵感,我将所有外键定义放在一个特定的远期文件中,例如:2999_12_31_235959_foreign_key.php

<?php

use App\Models\Post;
use App\Models\Tag;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class ForeignKeys extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        // Post_tag
        Schema::table(Post::NOM, function (Blueprint $table) {
            $table->foreign('id_post')
                ->references('id_post')
                ->on(Post::NOM);

            $table->foreign('id_tag')
                ->references('id_tag')
                ->on(Tag::NOM);
        });
    }
}

我看到的唯一缺点是没有在迁移中定义外键。

对于专业人士:

  • 保持数据库关系
  • 不关心表的创建顺序

答案 4 :(得分:-1)

您只需要更改迁移顺序。如果乐队或舞台表低于用户表,MySQL 找不到引用。 =)