snipe-it/database/migrations/2013_11_17_054359_drop_licenses_table.php
2021-09-26 15:48:43 -07:00

27 lines
374 B
PHP
Executable file

<?php
use Illuminate\Database\Migrations\Migration;
class DropLicensesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::dropIfExists('licenses');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}