2019-11-27 00:46:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
class CreateRoomsTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2019-12-01 00:22:33 +01:00
|
|
|
Schema::create('rooms', function (Blueprint $table) {
|
2019-12-03 12:45:04 +01:00
|
|
|
$table->bigIncrements('id')->unique();
|
2019-12-01 19:31:49 +01:00
|
|
|
$table->string('name')->unique();
|
2019-11-27 00:46:00 +01:00
|
|
|
$table->integer('capacity')->nullable();
|
|
|
|
$table->string('arrangement')->nullable();
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('rooms');
|
|
|
|
}
|
|
|
|
}
|