increments('id'); $table->integer('team_id')->nullable(); $table->string('name', 100)->nullable(); $table->string('ref', 30)->nullable(); $table->enum('type', ['Yes', 'No'])->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->tinyInteger('qualify')->nullable(); $table->string('initial_expiry', 30)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_social_campaigns'); } }