snipe-it/database/migrations/2018_10_19_153910_add_kits_table.php

35 lines
647 B
PHP
Raw Normal View History

2018-10-19 07:30:25 -07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
2018-10-19 07:30:25 -07:00
class AddKitsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::create('kits', function ($table) {
2018-10-19 07:30:25 -07:00
$table->increments('id');
$table->string('name')->nullable()->default(null);
2018-10-19 07:30:25 -07:00
$table->timestamps();
$table->engine = 'InnoDB';
});
}
2018-10-19 07:30:25 -07:00
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
Schema::drop('kits');
}
2018-10-19 07:30:25 -07:00
}