increments('id'); $table->string('name', 20)->nullable(); $table->integer('customer_id')->nullable(); $table->text('images')->nullable(); $table->text('duration')->nullable(); $table->text('description')->nullable(); $table->text('modules')->nullable(); $table->text('activities')->nullable(); $table->text('upload_folder')->nullable(); $table->enum('status', [20])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('projects'); } }