405

我不知道如何使用 Laravel 框架向现有数据库表中添加新列。

我尝试使用...编辑迁移文件

<?php

public function up()
{
    Schema::create('users', function ($table) {
        $table->integer("paid");
    });
}

在终端中,我执行php artisan migrate:installand migrate

如何添加新列?

4

16 回答 16

894

要创建迁移,您可以使用 Artisan CLI 上的 migrate:make 命令。使用特定名称以避免与现有模型冲突

对于 Laravel 5+:

php artisan make:migration add_paid_to_users_table --table=users

对于 Laravel 3:

php artisan migrate:make add_paid_to_users

然后您需要使用该Schema::table()方法(因为您正在访问现有表,而不是创建新表)。您可以添加这样的列:

public function up()
{
    Schema::table('users', function($table) {
        $table->integer('paid');
    });
}

并且不要忘记添加回滚选项:

public function down()
{
    Schema::table('users', function($table) {
        $table->dropColumn('paid');
    });
}

然后你可以运行你的迁移:

php artisan migrate

这在 Laravel 4 / Laravel 5 的文档中都有很好的介绍:

对于 Laravel 3:

编辑:

用于$table->integer('paid')->after('whichever_column');在特定列之后添加此字段。

于 2013-05-28T12:23:13.687 回答
77

我将为使用 Laravel 5.1 及更高版本的未来读者添加 mike3875 的答案。

为了使事情变得更快,您可以像这样使用标志“--table”:

php artisan make:migration add_paid_to_users --table="users"

这将自动添加upanddown方法内容:

/**
 * Run the migrations.
 *
 * @return void
 */
public function up()
{
    Schema::table('users', function (Blueprint $table) {
        //
    });
}

同样,您可以--create["table_name"]在创建新迁移时使用该选项,这将为您的迁移添加更多样板。小点,但在做大量它们时很有帮助!

于 2016-01-09T01:30:11.773 回答
62

laravel 5.6 及以上

如果您想将新列作为 FOREIGN KEY 添加到现有表中。

通过执行以下命令创建新迁移:make:migration

例子 :

php artisan make:migration add_store_id_to_users_table --table=users

在 database/migrations 文件夹中,您有新的迁移文件,例如:

2018_08_08_093431_add_store_id_to_users_table.php(见评论)

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AddStoreIdToUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('users', function (Blueprint $table) {

            // 1. Create new column
            // You probably want to make the new column nullable
            $table->integer('store_id')->unsigned()->nullable()->after('password');

            // 2. Create foreign key constraints
            $table->foreign('store_id')->references('id')->on('stores')->onDelete('SET NULL');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('users', function (Blueprint $table) {

            // 1. Drop foreign key constraints
            $table->dropForeign(['store_id']);

            // 2. Drop the column
            $table->dropColumn('store_id');
        });
    }
}

之后运行命令:

php artisan migrate

如果您出于任何原因想要撤消上次迁移,请运行以下命令:

php artisan migrate:rollback

您可以在文档中找到有关迁移的更多信息

于 2018-08-08T10:34:58.993 回答
27

如果您使用的是 Laravel 5,则命令为;

php artisan make:migration add_paid_to_users

所有用于制作事物的命令(控制器、模型、迁移等)都已移至该make:命令下。

php artisan migrate不过还是一样。

于 2015-04-09T11:38:57.347 回答
19

Schema::create您可以像这样在初始方法中添加新列:

Schema::create('users', function($table) {
    $table->integer("paied");
    $table->string("title");
    $table->text("description");
    $table->timestamps();
});

如果您已经创建了一个表,您可以通过创建新迁移并使用以下Schema::table方法向该表添加其他列:

Schema::table('users', function($table) {
    $table->string("title");
    $table->text("description");
    $table->timestamps();
});

文档对此相当详尽,从版本 3版本 4并没有太大变化。

于 2013-05-28T12:26:44.120 回答
18

在 Laravel 8 中

php artisan make:migration add_columnname_to_tablename_table --table=tablename

然后在创建迁移之后

public function up()
    {
        Schema::table('users', function (Blueprint $table) {

            // 1. Create new column
            $table->datatype('column_name')->nullable();
        });
    }
public function down()
    {
        Schema::table('users', function (Blueprint $table) {

            // 1. Create new column
            $table->dropColumn('column_name');
        });
    }

然后运行

php artisan migrate

如果您遇到错误,请使用创建表之前的日期重命名迁移名称,然后再次运行php artisan migrate

于 2021-06-24T14:06:44.167 回答
12

拉拉维尔 7

  1. 使用 cli 命令创建迁移文件:

    php artisan make:migration add_paid_to_users_table --table=users

  2. 将在迁移文件夹中创建一个文件,在编辑器中打开它。

  3. 添加到函数 up():

Schema::table('users', function (Blueprint $table) {
    // Create new column
    // You probably want to make the new column nullable
    $table->integer('paid')->nullable()->after('status');
}
  1. 添加到函数 down(),这将在迁移因某些原因失败时运行:

    $table->dropColumn('paid');

  2. 使用 cli 命令运行迁移:

    php artisan migrate


如果您想向表中添加列以创建外键约束:

在上述过程的第 3 步中,您将使用以下代码:

$table->bigInteger('address_id')->unsigned()->nullable()->after('tel_number');

$table->foreign('address_id')->references('id')->on('addresses')->onDelete('SET NULL');

在上述过程的第 4 步中,您将使用以下代码:

// 1. Drop foreign key constraints
$table->dropForeign(['address_id']);
// 2. Drop the column
$table->dropColumn('address_id');
于 2020-09-29T21:51:49.847 回答
10

这东西在 laravel 5.1 上工作。

首先,在您的终端上执行此代码

php artisan make:migration add_paid_to_users --table=users

之后转到您的项目目录并展开目录数据库 - 迁移并编辑文件 add_paid_to_users.php,添加此代码

public function up()
{
    Schema::table('users', function (Blueprint $table) {
         $table->string('paid'); //just add this line
    });
}

之后返回您的终端并执行此命令

php artisan migrate

希望这有帮助。

于 2018-01-27T11:26:29.727 回答
7

首先回滚之前的迁移

php artisan migrate:rollback

之后,您可以修改现有的迁移文件(添加新的、重命名或删除列),然后重新运行您的迁移文件

php artisan migrate
于 2018-09-26T06:52:24.940 回答
6

警告这是破坏性行为。如果你使用这个确保你首先备份你的数据库

您可以简单地修改现有的迁移文件,例如在表中添加一列,然后在终端中键入:

$ php artisan migrate:refresh
于 2017-08-17T13:34:44.197 回答
2

将列添加到您的迁移文件并运行此命令。

php artisan migrate:refresh --path=/database/migrations/your_file_name.php
于 2020-07-04T08:48:01.413 回答
-1

尽管迁移文件是其他人提到的最佳实践,但在紧要关头,您还可以添加一个带有 tinker 的列。

$ php artisan tinker

这是终端的示例单线:

Schema::table('users', function(\Illuminate\Database\Schema\Blueprint $table){ $table->integer('paid'); })



(此处为便于阅读而进行了格式化)

Schema::table('users', function(\Illuminate\Database\Schema\Blueprint $table){ 
    $table->integer('paid'); 
});
于 2019-04-23T16:12:50.873 回答
-1

首先你必须创建一个迁移,你可以在 laravel artisan CLI 上使用 migrate:make 命令。旧的 laravel 版本,比如 laravel 4,你可以在 Laravel 4 上使用这个命令:

php artisan migrate:make add_paid_to_users

对于 laravel 5 版本

对于 Laravel 5+:

php artisan make:migration add_paid_to_users_table --table=users

然后你需要使用 Schema::table() 。你必须添加列:

public function up()

{

    Schema::table('users', function($table) {

        $table->integer('paid');

    });

}

进一步你可以检查这个

于 2020-08-18T10:21:39.807 回答
-1

如果您不想将蓝图(架构)拆分为两个迁移文件,那么您可以做的最好的事情是从数据库中删除表,然后重命名迁移文件的最后一个数字并执行

php artisan migrate

这有助于您保护其他表的数据。

于 2021-08-06T18:18:06.070 回答
-1

运行以下命令: php artisan migrate:fresh --seed 它将删除表并重新添加它,更新添加到数据库的所有列

于 2021-08-24T14:53:21.643 回答
-1

你可以做的是,

Schema::create('users', function ($table) { $table->integer("paid"); });

在编写此写入命令php artisan migratephp artisan refresh 我个人更喜欢的是刷新而不是全新迁移之后,因为如果您执行全新迁移,它将删除所有数据刷新不会。

但唯一的例外是如果你刷新并且表中有任何外键,所以它不会重新建立关系,所以你会得到错误,

无法添加外键约束

于 2021-10-21T15:45:21.753 回答