2018_01_16_165521_create_messages_table.php
674 Bytes
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMessagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('message', function (Blueprint $table) {
$table->increments('id');
$table->string('describe')->comment('描述');
$table->string('phone')->comment('电话');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('message');
}
}