Laravel 5 基礎(六)- 數據庫遷移(Migrations)

database migrations 是laravel最強大的功能之一。數據庫遷移能夠理解爲數據庫的版本控制器。php

database/migrations 目錄中包含兩個遷移文件,一個創建用戶表,一個用於用戶密碼重置。mysql

在遷移文件中,up 方法用於建立數據表,down方法用於回滾,也就是刪除數據表。laravel

  • 執行數據庫遷移
php artisan migrate
#輸出
Migration table created successfully.
Migrated: 2014_10_12_000000_create_users_table
Migrated: 2014_10_12_100000_create_password_resets_table

查看mysql數據庫,能夠看到產生了三張表。 migratoins 表是遷移記錄表,userspasword_resetssql

  • 若是設計有問題,執行數據庫回滾
php artisan migrate:rollback
#輸出
Rolled back: 2014_10_12_100000_create_password_resets_table
Rolled back: 2014_10_12_000000_create_users_table

再次查看mysql數據庫,就剩下 migrations 表了, users password_resets 被刪除了。數據庫

修改遷移文件,再次執行遷移。bash

  • 新建遷移
php artisan make:migration create_article_table --create='articles'
#輸出
Created Migration: 2015_03_28_050138_create_article_table

database/migrations 下生成了新的文件。設計

<?php

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

class CreateArticleTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('articles', function(Blueprint $table)
        {
            $table->increments('id');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('articles');
    }

}

自動添加了 id列,自動增加,timestamps() 會自動產生 created_atupdated_at 兩個時間列。咱們添加一些字段:版本控制

public function up()
    {
        Schema::create('articles', function(Blueprint $table)
        {
            $table->increments('id');
            $table->string('title');
            $table->text('body');
            $table->timestamp('published_at');
            $table->timestamps();
        });
    }

執行遷移:code

php artisan migrate

如今有了新的數據表了。rem

假設咱們須要添加一個新的字段,你能夠回滾,而後修改遷移文件,再次執行遷移,或者能夠直接新建一個遷移文件

php artisan make:migration add_excerpt_to_articels_table

查看新產生的遷移文件

<?php

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

class AddExcerptToArticelsTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        //
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        //
    }

}

只有空的 up 和 down 方法。咱們能夠手工添加代碼,或者咱們讓laravel爲咱們生成基礎代碼。刪除這個文件,從新生成遷移文件,注意添加參數:

php artisan make:migration add_excerpt_to_articels_table --table='articles'

如今,up 方法裏面有了初始代碼。

public function up()
    {
        Schema::table('articles', function(Blueprint $table)
        {
            //
        });
    }

添加實際的數據修改代碼:

public function up()
    {
        Schema::table('articles', function(Blueprint $table)
        {
            $table->text('excerpt')->nullable();
        });
    }
    
    public function down()
    {
        Schema::table('articles', function(Blueprint $table)
        {
            $table->dropColumn('excerpt');
        });
    }

nullable() 表示字段也能夠爲空。

再次執行遷移並檢查數據庫。

若是咱們爲了好玩,執行回滾

php artisan migrate:rollback

excerpt 列沒有了。

相關文章
相關標籤/搜索