tethys/database/migrations/2015_06_09_041145_create_shelves_table.php
2020-06-10 21:04:18 +02:00

34 lines
492 B
PHP
Executable File

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