snipe-it/database/migrations/2013_11_17_054359_drop_licenses_table.php
2016-03-25 01:18:05 -07:00

28 lines
367 B
PHP
Executable file

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