increments('id');
$table->string('ad_type');
$table->string('ad_image');
$table->string('ad_video');
$table->string('ad_url')->nullable();
$table->string('ad_location');
$table->string('ad_target')->nullable();
$table->string('ad_hold')->nullable();
$table->string('time')->nullable();
$table->string('endtime')->nullable();
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('ads');
}
}