increments('id'); $table->string('project_name', 112)->nullable(); $table->string('project_category', 220)->nullable(); $table->string('project_title', 112)->nullable(); $table->text('description')->nullable(); $table->longText('screenshots')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('brmagazins'); } }