程序中Schema建表

        Schema::create('abc', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name')->comment('姓名');
            $table->string('email')->unique();
            $table->string('password');
            $table->rememberToken();
            $table->timestamps();
        });

我能在控制器直接这样子写吗?如果我要用程序来建表,是怎么样建的?我试了一下,好象是报错的

JellyBool
修改的评论也不能少于六个字哦!