| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateEventAdvsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('event_advs', function (Blueprint $table) {
- $table->increments('id');
- $table->integer('event_id')->unsigned()->nullable();
- $table->foreign('event_id')->references('id')->on('events');
- $table->string('name');
- $table->string('position')->nullable();
- $table->string('google_code')->nullable();
- $table->string('image')->nullable();
- $table->string('jingle')->nullable();
- $table->string('url')->nullable();
- $table->boolean('online');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('event_advs');
- }
- }
|