12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class BmBanner extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- //
- Schema::create('banner', function (Blueprint $table) {
- $table->increments('id');
- $table->integer('type')->comment('分类 1.用户 2.医生');
- $table->string('image')->comment('图片地址');
- $table->string('url')->comment('链接')->nullable();
- $table->integer('status')->comment('状态');
- $table->dateTime('created_at')->comment('创建时间');
- $table->dateTime('updated_at')->comment('更新时间');
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- //
- Schema::drop('banner');
- }
- }
|