1234567891011121314151617181920212223242526272829303132333435363738 |
- q<?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateLocationsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('locations', function (Blueprint $table) {
- $table->increments('id');
- $table->float('lat', 8, 5);
- $table->float('lng', 8, 5);
- $table->unsignedInteger('user_id');
- $table->foreign('user_id')
- ->references('id')
- ->on('users')
- ->onDelete('cascade');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('locations');
- }
- }
|