1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateTableMessage extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('map_message', function (Blueprint $table) {
- $table->increments('id');
- $table->unsignedInteger('user_id')->comment('用户id');
- $table->longText('content')->comment('文本内容');
- $table->string('lat',20)->comment('纬度');
- $table->string('lng',20)->comment('经度');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('map_message');
- }
- }
|