bigIncrements('id'); $table->string('name',32); $table->char('no',10); $table->char('cre_num',18); $table->char('telephone',11); $table->string('address'); $table->integer('team_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }