>  기사  >  PHP 프레임워크  >  Laravel은 데이터 테이블을 생성합니다(코드와 결합된 명령줄 사용).

Laravel은 데이터 테이블을 생성합니다(코드와 결합된 명령줄 사용).

藏色散人
藏色散人앞으로
2020-11-26 13:40:133914검색

프레임워크 튜토리얼 칼럼에서 소개한 내용입니다. 필요한 친구들에게 도움이 되었으면 좋겠습니다! 데이터베이스에서 직접 데이터 테이블을 생성할 수 있지만 향후 프로젝트 마이그레이션에는 편리하지 않습니다. 이제 코드와 결합된 명령줄을 사용하여 생성합니다.


1. 명령을 통해 데이터 테이블 파일을 생성합니다

php artisan make:migration create_table_customers

laravel 创建数据表2. 데이터 테이블 파일에서 데이터 테이블 관련 필드를 완성합니다

<?php

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

class CreateTableCustomers extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create(&#39;customers&#39;, function (Blueprint $table) {
            $table->increments(&#39;id&#39;);
            $table->string(&#39;mobile&#39;)->nullable()->unique();
            $table->string(&#39;email&#39;)->unique();
            $table->string(&#39;website&#39;)->default(&#39;website&#39;)->comment(&#39;站点:applet、website&#39;);
            $table->string(&#39;store_id&#39;)->default(&#39;1&#39;)->comment(&#39;店铺 ID&#39;);
            $table->string(&#39;first_name&#39;);
            $table->string(&#39;last_name&#39;);
            $table->integer(&#39;appellation&#39;)->comment(&#39;称谓&#39;);
            $table->dateTime(&#39;birthday&#39;)->comment(&#39;生日&#39;);
            $table->string(&#39;province&#39;)->comment(&#39;省&#39;);
            $table->string(&#39;city&#39;)->comment(&#39;市&#39;);
            $table->string(&#39;district&#39;)->comment(&#39;区/县&#39;);
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists(&#39;customers&#39;);
    }
}

laravel 创建数据表3.

php artisan migrate

이제 데이터 테이블이 생성되었습니다! ㅋㅋㅋ

위 내용은 Laravel은 데이터 테이블을 생성합니다(코드와 결합된 명령줄 사용).의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 learnku.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제