mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
9db8bd782d
Signed-off-by: snipe <snipe@snipe.net>
40 lines
776 B
PHP
40 lines
776 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class AddKitsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
if (!Schema::hasTable('kits')) {
|
|
Schema::create('kits', function ($table) {
|
|
$table->increments('id');
|
|
$table->string('name')->nullable()->default(null);
|
|
$table->timestamps();
|
|
$table->engine = 'InnoDB';
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
if (Schema::hasTable('kits')) {
|
|
Schema::drop('kits');
|
|
}
|
|
}
|
|
|
|
}
|