php 将列添加到现有表迁移

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将列添加到现有表迁移相关的知识,希望对你有一定的参考价值。

public function up()
    {
        Schema::table('lotto_categories', function (Blueprint $table) {
            $table->string('logo')->after('name');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('lotto_categories', function (Blueprint $table) {
            $table->dropColumn('logo');
        });
    }

以上是关于php 将列添加到现有表迁移的主要内容,如果未能解决你的问题,请参考以下文章

将列 ID 添加到现有表

Rails迁移以将主键添加到现有表

如何将列添加到现有表?

MariaDB 将列动态添加到现有表

将列添加到现有 SQL Server 表 - 含义

text 将列添加到现有表