您好,登錄后才能下訂單哦!
怎么在laravel中利用migrate創(chuàng)建一個數(shù)據(jù)表?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
1. 創(chuàng)建并連接數(shù)據(jù)庫
創(chuàng)建數(shù)據(jù)庫
在命令行中輸入mysql -u root -p然后輸入數(shù)據(jù)庫密碼,
創(chuàng)建數(shù)據(jù)庫create database work_space,
回車完成數(shù)據(jù)庫的創(chuàng)建
連接數(shù)據(jù)庫
打開項目中的.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ù)庫名 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)建一個migration
打開項目根目錄(我的是/var/www/html/work_space/)
輸入命令:php artisan make:migration create_table_users
如上則成功創(chuàng)建一個migration,
在database/migrations/ 會發(fā)現(xiàn)多了一個名為
2018_07_31_143907_create_table_users.php
打開這個文件,并在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ù)庫,查看有哪些表,show tables結(jié)果如下:
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。