php artisan migration 数据库创建,修改,删除

入坑Laravel,对 php artisan migration的一些记录,本文假定数据库是 sms_queue

1、创建数据库

php artisan make:migration create_sms_queue_table --create="sms_queue"

在网站根目录命令行下运行以上命运之后,会在database/migrations下创建一个 时间_create_数据库名_table.php 文件,如:2019_11_02_160926_create_sms_queue_table.php
编辑这个文件 up 方法:

$table->increments('id');//一个自增的id
//这里要加入你需要的字段
$table->timestamps();// 自动创建 created_at 和 updated_at 字段

比如我的 sms_queue:

$table->increments('id');
$table->integer('user_id')->comment('用户ID');
$table->string('template_id')->nullable()->comment('短信模板'); 
$table->string('items')->nullable()->comment('替换数组');
$table->tinyInteger('state')->default(0)->comment('状态:0 未发送 1已发送');
$table->timestamps();

接下来,将这个表添加到数据库里php artisan migrate
执行后会提示:

Migrating: 2019_11_02_160926_create_sms_queue_table
Migrated:  2019_11_02_160926_create_sms_queue_table (0.02 seconds)

这样就完成了数据库的创建。

2、增加数据库字段

php artisan make:migration add_sms_queue_table --table="sms_queue"

运行后,在database/migrations下会出现以 时间_add_数据库名_table.php 文件,如我的:2019_11_02_162707_add_sms_queue_table
编辑这个文件up方法:

        Schema::table('sms_queue', function (Blueprint $table) {
            //这里你要添加的字段,格式和添加时一样。
        });

然后再运行 php artisan migrate
3、更新数据库字段

php artisan make:migration alter_sms_queue_table --table="sms_queue"

命令会生成相应的表,大致方法与以上两个方法相同。
在Schema方法里,你可以删除某字段,修改某字段名字或属性。

  $table->dropColumn(['votes', 'avatar', 'location']);//删除字段
  $table->renameColumn('from', 'to');//重命名字段
  $table->string('name', 50)->nullable()->change();//修改字段属性,前面和新建一样,最后有个change()方法。

如果执行 php artisan migrate 之后,我又修改了某些文件,如何处理##

那么就需要执行回滚: php artisan migrate:rollback
当然,也可以一次回滚多次 php artisan migrate:rollback --step=5 回滚5次
那么,如何知道我该回滚几次?
打开你的数据库 migrations表,详细记录了每次执行php artisan migrate所操作的数据库,```batch``字段记录了次数,按需要进行吧。

附:可用的字段类型

命令 描述
$table->bigIncrements('id'); 递增 ID(主键),相当于「UNSIGNED BIG INTEGER」
$table->bigInteger('votes'); 相当于 BIGINT
$table->binary('data'); 相当于 BLOB
$table->boolean('confirmed'); 相当于 BOOLEAN
$table->char('name', 4); 相当于带有长度的 CHAR
$table->date('created_at'); 相当于 DATE
$table->dateTime('created_at'); 相当于 DATETIME
$table->dateTimeTz('created_at'); 相当于带时区 DATETIME
$table->decimal('amount', 8, 2); 相当于带有精度与基数 DECIMAL
$table->double('column', 8, 2); 相当于带有精度与基数 DOUBLE
$table->enum('level', ['easy', 'hard']); 相当于 ENUM
$table->float('amount', 8, 2); 相当于带有精度与基数 FLOAT
$table->geometry('positions'); 相当于 GEOMETRY
$table->geometryCollection('positions'); 相当于 GEOMETRYCOLLECTION
$table->increments('id'); 递增的 ID (主键),相当于「UNSIGNED INTEGER」
$table->integer('votes'); 相当于 INTEGER
$table->ipAddress('visitor'); 相当于 IP 地址
$table->json('options'); 相当于 JSON
$table->jsonb('options'); 相当于 JSONB
$table->lineString('positions'); 相当于 LINESTRING
$table->longText('description'); 相当于 LONGTEXT
$table->macAddress('device'); 相当于 MAC 地址
$table->mediumIncrements('id'); 递增 ID (主键) ,相当于「UNSIGNED MEDIUM INTEGER」
$table->mediumInteger('votes'); 相当于 MEDIUMINT
$table->mediumText('description'); 相当于 MEDIUMTEXT
$table->morphs('taggable'); 相当于加入递增的 taggable_id 与字符串 taggable_type
$table->multiLineString('positions'); 相当于 MULTILINESTRING
$table->multiPoint('positions'); 相当于 MULTIPOINT
$table->multiPolygon('positions'); 相当于 MULTIPOLYGON
$table->nullableMorphs('taggable'); 相当于可空版本的 morphs() 字段
$table->nullableTimestamps(); 相当于可空版本的 timestamps() 字段
$table->point('position'); 相当于 POINT
$table->polygon('positions'); 相当于 POLYGON
$table->rememberToken(); 相当于可空版本的 VARCHAR (100) 的 remember_token 字段
$table->smallIncrements('id'); 递增 ID (主键) ,相当于「UNSIGNED SMALL INTEGER」
$table->smallInteger('votes'); 相当于 SMALLINT
$table->softDeletes(); 相当于为软删除添加一个可空的 deleted_at 字段
$table->softDeletesTz(); 相当于为软删除添加一个可空的 带时区的 deleted_at 字段
$table->string('name', 100); 相当于带长度的 VARCHAR
$table->text('description'); 相当于 TEXT
$table->time('sunrise'); 相当于 TIME
$table->timeTz('sunrise'); 相当于带时区的 TIME
$table->timestamp('added_on'); 相当于 TIMESTAMP
$table->timestampTz('added_on'); 相当于带时区的 TIMESTAMP
$table->tinyIncrements('id'); 相当于自动递增 UNSIGNED TINYINT
$table->tinyInteger('votes'); 相当于 TINYINT
$table->unsignedBigInteger('votes'); 相当于 Unsigned BIGINT
$table->unsignedDecimal('amount', 8, 2); 相当于带有精度和基数的 UNSIGNED DECIMAL
$table->unsignedInteger('votes'); 相当于 Unsigned INT
$table->unsignedMediumInteger('votes'); 相当于 Unsigned MEDIUMINT
$table->unsignedSmallInteger('votes'); 相当于 Unsigned SMALLINT
$table->unsignedTinyInteger('votes'); 相当于 Unsigned TINYINT
$table->uuid('id'); 相当于 UUID
$table->year('birth_year'); 相当于 YEAR

更多高级方法,请参考:
https://learnku.com/docs/laravel/5.5/migrations/1329#creating-tables

你可能感兴趣的:(php artisan migration 数据库创建,修改,删除)