41 lines
1022 B
PHP
41 lines
1022 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
|
||
|
class CreateEjaculationsTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('ejaculations', function (Blueprint $table) {
|
||
|
$table->increments('id');
|
||
|
$table->integer('user_id');
|
||
|
$table->timestamp('ejaculated_date');
|
||
|
$table->string('note', 500)->default('');
|
||
|
$table->double('geo_latitude')->nullable();
|
||
|
$table->double('geo_longitude')->nullable();
|
||
|
$table->boolean('is_private')->default(false);
|
||
|
$table->timestamps();
|
||
|
|
||
|
$table->index('user_id');
|
||
|
$table->unique(['user_id', 'ejaculated_date']);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::dropIfExists('ejaculations');
|
||
|
}
|
||
|
}
|