Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have multiple database connection and have a master database that others database connect to this. The problem is I want run a migration in once and only the last database save this migration batch into the table.

How to make all database save this migration batch record into the migrations table? Please give some advice, thanks and appreciate.

    $copies= DB::connection('mysql_master')->table('copies')->where('status', '1')->get();

    forEach($copiesas $c){
        Config::set('database.connections.mysql', [
            'driver'=>'mysql',
            'host'=> $c->dbserver,
            'database'=>$c->dbname,
            'username'=>$c->dbuser,
            'password'=>$c->dbpassword
        ]); 
        DB::purge('mysql');

        Schema::table('users', function (Blueprint $table) {
            $table->string('source')->nullable();
           
        });
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
274 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...