Home> PHP Framework> Laravel> body text

Laravel creates a data table (using the command line combined with code)

藏色散人
Release: 2020-11-26 13:40:26
forward
3850 people have browsed it

The following is theLaravelframework tutorial column to introduce laravel to create a data table. I hope it will be helpful to friends in need!

Although you can create data tables directly in the database, it is not convenient for future project migration. Now use the command line combined with code to generate it.

1. Create the data table file through the command

php artisan make:migration create_table_customers
Copy after login

laravel 创建数据表

2. In the data table Complete the relevant fields of the data table in the file

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'); } }
Copy after login

laravel 创建数据表

3. Generate the data table

php artisan migrate
Copy after login

laravel 创建数据表

laravel 创建数据表
At this point, the data table has been generated!

The above is the detailed content of Laravel creates a data table (using the command line combined with code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:learnku.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!