increments('id'); $table->integer('uid')->length(10)->nullable(); $table->string('link_man')->length(100)->nullable(); $table->string('link_phone')->length(50)->nullable(); $table->string('link_email')->length(100)->nullable(); $table->string('link_address')->length(255)->nullable(); $table->string('project_title')->length(255)->nullable(); $table->text('project_intro')->nullable(); $table->text('project_info')->nullable(); $table->text('project_help')->nullable(); $table->text('project_audit')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('members_project'); } }