tableName, function (Blueprint $table) { $table->increments('id'); $table->string('Name', 128); $table->string('FunList', 256); $table->string('UsrList', 256); $table->unsignedTinyInteger('Valid'); $table->unsignedTinyInteger('Oid'); // TODO: 不知道作用 $table->timestamps(); }); } public function down() { Schema::drop($this->tableName); } }