Monday, January 11, 2016

การทำ Migrate Database

 เปิด terminal พิม

php artisan migrate:install

ไปที่ Folder  laravel ที่ต้องการสร้าง

cd /var/www/laravel/

พิมคำสั่ง

sudo php artisan migrate:make Create_table_use 




เปิดไฟล์ที่อยู่ใน  /var/www/laravel/app/database/migrations/ 

ทำการแก้ไขไฟล์
 <?php

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

class CreateTableUser extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        //
        Schema::create('users', function($table)
        {
            $table->increments('id');
            $table->string('fisrtname')->unique();
            $table->string('lastname');
            $table->string('email');
        });

    }

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

}

No comments:

Post a Comment