shareit/database/migrations/2018_09_08_192152_create_items_table.php

43 lines
1017 B
PHP
Raw Permalink Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
2021-05-20 23:37:35 +00:00
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('items', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
2018-09-11 23:48:09 +00:00
$table->integer('product_id');
$table->integer('used_by')->nullable();
$table->integer('waiting_user_id')->nullable();
$table->timestamps();
});
Schema::create('item_user', function (Blueprint $table) {
$table->increments('id');
$table->integer('item_id');
$table->integer('user_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('items');
Schema::dropIfExists('item_user');
}
}