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

33 lines
587 B
PHP
Executable file

<?php
use Illuminate\Database\Migrations\Migration;
class CreateManufacturersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('manufacturers', function ($table) {
$table->increments('id');
$table->string('name');
$table->timestamps();
$table->engine = 'InnoDB';
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('manufacturers');
}
}