1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateSuggestTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('suggest', function (Blueprint $table) {
- $table->increments('id');
- $table->integer('user_id')->comment('用户ID');
- $table->string('content')->comment('建议');
- $table->string('email')->comment('收信邮箱');
- $table->string('reply')->comment('回复内容')->default('');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('suggest');
- }
- }
|