以下は、laravelを導入してデータテーブルを作成するフレームワークチュートリアルのコラムです。困っている友達の役に立つでしょう! データ テーブルをデータベースに直接作成することもできますが、将来のプロジェクトの移行には不便です。次に、コマンド ラインとコードを組み合わせて使用して、それを生成します。
1. コマンド
php artisan make:migration create_table_customers
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('customers', function (Blueprint $table) { $table->increments('id'); $table->string('mobile')->nullable()->unique(); $table->string('email')->unique(); $table->string('website')->default('website')->comment('站点:applet、website'); $table->string('store_id')->default('1')->comment('店铺 ID'); $table->string('first_name'); $table->string('last_name'); $table->integer('appellation')->comment('称谓'); $table->dateTime('birthday')->comment('生日'); $table->string('province')->comment('省'); $table->string('city')->comment('市'); $table->string('district')->comment('区/县'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('customers'); } }
3 内のデータ テーブルの関連フィールドに入力します。データ テーブルを生成します
php artisan migrate
この時点で、データ テーブルが生成されました。
以上がLaravelはデータテーブルを作成します(コマンドラインとコードを組み合わせて使用)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。