snipe-it/database/migrations/2015_09_22_000104_create_custom_fieldsets.php

33 lines
622 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
2016-03-25 01:18:05 -07:00
class CreateCustomFieldsets extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('custom_fieldsets', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->engine = 'InnoDB';
//
});
}
2016-03-25 01:18:05 -07:00
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('custom_fieldsets');
}
2016-03-25 01:18:05 -07:00
}