36 lines
769 B
PHP
36 lines
769 B
PHP
|
<?php
|
||
|
|
||
|
use Phaza\LaravelPostgis\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class CreatePlacesTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('places', function (Blueprint $table) {
|
||
|
$table->increments('id');
|
||
|
$table->string('name');
|
||
|
$table->string('slug')->unique();
|
||
|
$table->text('description')->nullable();
|
||
|
$table->point('location');
|
||
|
$table->polygon('polygon')->nullable();
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::drop('places');
|
||
|
}
|
||
|
}
|