⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.151
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
styleage_v3
/
core
/
database
/
migrations
/
View File Name :
2021_10_11_090243_create_extra_settings_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateExtraSettingsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('extra_settings', function (Blueprint $table) { $table->id(); $table->tinyInteger('is_t4_slider')->default(1)->nullable(); $table->tinyInteger('is_t4_featured_banner')->default(1)->nullable(); $table->tinyInteger('is_t4_specialpick')->default(1)->nullable(); $table->tinyInteger('is_t4_3_column_banner_first')->default(1)->nullable(); $table->tinyInteger('is_t4_flashdeal')->default(1)->nullable(); $table->tinyInteger('is_t4_3_column_banner_second')->default(1)->nullable(); $table->tinyInteger('is_t4_popular_category')->default(1)->nullable(); $table->tinyInteger('is_t4_2_column_banner')->default(1)->nullable(); $table->tinyInteger('is_t4_blog_section')->default(1)->nullable(); $table->tinyInteger('is_t4_brand_section')->default(1)->nullable(); $table->tinyInteger('is_t4_service_section')->default(1)->nullable(); $table->tinyInteger('is_t3_slider')->default(1)->nullable(); $table->tinyInteger('is_t3_service_section')->default(1)->nullable(); $table->tinyInteger('is_t3_3_column_banner_first')->default(1)->nullable(); $table->tinyInteger('is_t3_popular_category')->default(1)->nullable(); $table->tinyInteger('is_t3_flashdeal')->default(1)->nullable(); $table->tinyInteger('is_t3_3_column_banner_second')->default(1)->nullable(); $table->tinyInteger('is_t3_pecialpick')->default(1)->nullable(); $table->tinyInteger('is_t3_brand_section')->default(1)->nullable(); $table->tinyInteger('is_t3_2_column_banner')->default(1)->nullable(); $table->tinyInteger('is_t3_blog_section')->default(1)->nullable(); $table->tinyInteger('is_t2_slider')->default(1)->nullable(); $table->tinyInteger('is_t2_service_section')->default(1)->nullable(); $table->tinyInteger('is_t2_3_column_banner_first')->default(1)->nullable(); $table->tinyInteger('is_t2_flashdeal')->default(1)->nullable(); $table->tinyInteger('is_t2_new_product')->default(1)->nullable(); $table->tinyInteger('is_t2_3_column_banner_second')->default(1)->nullable(); $table->tinyInteger('is_t2_featured_product')->default(1)->nullable(); $table->tinyInteger('is_t2_bestseller_product')->default(1)->nullable(); $table->tinyInteger('is_t2_toprated_product')->default(1)->nullable(); $table->tinyInteger('is_t2_2_column_banner')->default(1)->nullable(); $table->tinyInteger('is_t2_blog_section')->default(1)->nullable(); $table->tinyInteger('is_t2_brand_section')->default(1)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('extra_settings'); } }