PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
database
/
migrations
/
old(with theme)
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAdvertisementsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('advertisements', function (Blueprint $table) { $table->id(); $table->string('name',60)->nullable(); $table->integer('click')->default(0); $table->integer('impression')->default(0); $table->tinyInteger('type')->default(0)->comment('Banner : 1, Script : 2'); $table->string('size', 40)->nullable(); $table->string('redirect_url')->nullable(); $table->string('image')->nullable(); $table->text('script')->nullable(); $table->tinyInteger('status')->default(0)->comment('Enable : 1, Disable : 2'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('advertisements'); } }
[-] 2021_08_31_145925_create_product_specifications_table.php
[edit]
[-] 2021_08_30_161210_create_categories_table.php
[edit]
[-] 2021_09_12_174543_create_contacts_table.php
[edit]
[+]
..
[-] 2019_12_14_000001_create_personal_access_tokens_table.php
[edit]
[-] 2021_09_05_110816_create_subcategories_table.php
[edit]
[-] 2021_09_04_154819_create_reviews_table.php
[edit]
[-] 2021_09_12_170648_create_product_reports_table.php
[edit]
[-] 2021_09_04_115533_create_orders_table.php
[edit]
[-] 2021_08_30_163729_create_specifications_table.php
[edit]
[-] 2021_09_07_161343_create_brands_table.php
[edit]
[-] 2021_09_12_235638_create_contact_replies_table.php
[edit]
[-] 2021_08_30_172934_create_products_table.php
[edit]
[-] 2021_05_23_111859_create_email_logs_table.php
[edit]
[-] 2021_03_15_084721_create_admin_notifications_table.php
[edit]
[-] 2021_09_02_103614_create_advertisements_table.php
[edit]
[-] 2021_05_08_103925_create_sms_gateways_table.php
[edit]