bigIncrements('id'); $table->integer('uid'); $table->string('name',32); $table->char('no',10); $table->char('cre_num',18); $table->char('telphone',11); $table->string('address'); $table->integer('team_id'); $table->integer('cert')->default('0'); $table->string('openid','28')->nullable($value = true); $table->timestamp('added_on'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users_del'); } }