24 lines
566 B
PHP
24 lines
566 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateHotelsTable extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
Schema::create('hotels', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('name');
|
|
$table->text('address')->nullable();
|
|
$table->string('phone')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('hotels');
|
|
}
|
|
} |