Laravel diary_使用者模型

xuanxuanQueen發表於2019-02-19

建立模型

$ php artisan make:model users

同時建立資料庫遷移檔案

$ php artisan make:model users -migration

遷移檔案例項:

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
public function up()
{
//使用Schema::create建立資料庫表
Schema::create('users', function (Blueprint $table) {
//使用$table定義資料表欄位
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章