increments('id'); $table->string('name', 50)->nullable(); $table->text('description')->nullable(); $table->string('image', 100)->nullable(); $table->enum('status', ['0','1'])->nullable(); $table->text('slug')->nullable(); $table->integer('user_id')->nullable(); $table->string('check_me', 50)->nullable(); $table->enum('gender', ['0','1'])->nullable(); $table->string('country', 50)->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('samples'); } }