PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
ads
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class AdsCreateAdsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('ads', function (Blueprint $table) { $table->id(); $table->string('name', 255); $table->dateTime('expired_at')->nullable(); $table->string('location', 120)->nullable(); $table->string('key', 120)->unique(); $table->string('image', 255)->nullable(); $table->string('url', 255)->nullable(); $table->bigInteger('clicked')->default(0); $table->integer('order')->default(0)->nullable(); $table->string('status', 60)->default('published'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ads'); } }
[+]
..
[-] 2020_11_18_150916_ads_create_ads_table.php
[edit]