Laravel Migrations的migrate与rollback

7 篇文章 0 订阅
1 篇文章 0 订阅

php artisan make:migration create_admin_user_table

 

<?php

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

class CreateAdminUserTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('admin_user', function (Blueprint $table) {
            $table->engine = 'InnoDB';
            $table->increments('id');
            $table->string('username',32)->comment('用户名');
            $table->string('password',255)->comment('密码');
            $table->string('email',32)->default('')->comment('邮箱');
            $table->integer('phone')->default(0)->comment('手机');
            $table->string('desc',100)->default('')->comment('描述');
            $table->timestamps();
        });

        DB::statement("ALTER TABLE `admin_user` comment'平台:用户表'"); // 表注释
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('admin_user');
    }
}

#生成表

php artisan migrate

 

#回滚表

php artisan migrate:rollback --step

 

laravel php artisan db:seed 提示 class UserTableSeeder does not exist

 

composer dump-autoload

https://blog.csdn.net/duanshuiliu2017/article/details/79655413

 

造数据

https://www.jianshu.com/p/4ad6c9239aa8

 

参考文献:

https://blog.csdn.net/sad1949man/article/details/78267977

https://laravel-china.org/docs/laravel/5.5/migrations/1329

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值