laravel中可以使用migration創(chuàng)建數(shù)據(jù)表,這使得數(shù)據(jù)庫(kù)的遷移非常便利,下面介紹一下laravel中使用migration創(chuàng)建數(shù)據(jù)表的過程。數(shù)據(jù)庫(kù)使用的是mysql,laravel版本為5.5
1. 創(chuàng)建并連接數(shù)據(jù)庫(kù)
創(chuàng)建數(shù)據(jù)庫(kù)
在命令行中輸入mysql -u root -p然后輸入數(shù)據(jù)庫(kù)密碼,
創(chuàng)建數(shù)據(jù)庫(kù)create database work_space,
回車完成數(shù)據(jù)庫(kù)的創(chuàng)建
連接數(shù)據(jù)庫(kù)
打開項(xiàng)目中的.env文件
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:kFEhG73pi95EeRVeveIfo11Q0bSui/4Y2tKvjiT0zFc=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=work_space //數(shù)據(jù)庫(kù)名
DB_USERNAME=root //用戶名
DB_PASSWORD=root //密碼
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1
2. 使用migration創(chuàng)建數(shù)據(jù)表
創(chuàng)建一個(gè)migration
打開項(xiàng)目根目錄(我的是/var/www/html/work_space/)
輸入命令:php artisan make:migration create_table_users
如上則成功創(chuàng)建一個(gè)migration,
在database/migrations/ 會(huì)發(fā)現(xiàn)多了一個(gè)名為
2018_07_31_143907_create_table_users.php
打開這個(gè)文件,并在up方法中添加要建的表中的字段信息,如下:
?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTableUsers extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// 創(chuàng)建用戶表
Schema::create('users', function (Blueprint $table) {
$table->increments('user_id');
$table->string('user_email',32)->default('')->comment('用戶登錄名:企業(yè)郵箱');
$table->string('user_password',32)->default('')->comment('用戶密碼,初始值為企業(yè)郵箱');
$table->ipAddress('user_ip')->default('')->comment('用戶最后一次登錄ip');
$table->integer('user_login_cnt')->default(0)->comment('用戶登錄次數(shù)');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
在命令行中執(zhí)行php artisan migrate,結(jié)果如下(我創(chuàng)建了四張表):
打開數(shù)據(jù)庫(kù),查看有哪些表,show tables結(jié)果如下:
以上便完成了使用migration創(chuàng)建數(shù)據(jù)表,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Laravel 將數(shù)據(jù)表的數(shù)據(jù)導(dǎo)出,并生成seeds種子文件的方法
- laravel的數(shù)據(jù)表填充器使用詳解