⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
database
/
migrations
/
View File Name :
2019_05_17_113042_create_tour_attrs_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTourAttrsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('bravo_attrs', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name', 255)->nullable(); $table->string('slug', 255)->nullable(); $table->string('service', 50)->nullable(); $table->tinyInteger('hide_in_filter_search')->nullable(); $table->smallInteger('position')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->softDeletes(); $table->timestamps(); }); Schema::create('bravo_terms', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name', 255)->nullable(); $table->text('content')->nullable(); $table->integer('attr_id')->nullable(); $table->string('slug', 255)->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->integer('image_id')->nullable(); $table->string('icon')->nullable(); //Languages $table->bigInteger('origin_id')->nullable(); $table->string('lang', 10)->nullable(); $table->softDeletes(); $table->timestamps(); }); Schema::create('bravo_attrs_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('origin_id')->nullable(); $table->string('locale', 10)->nullable(); $table->string('name', 255)->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->unique(['origin_id', 'locale']); $table->timestamps(); }); Schema::create('bravo_terms_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('origin_id')->nullable(); $table->string('locale', 10)->nullable(); $table->string('name', 255)->nullable(); $table->text('content')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->unique(['origin_id', 'locale']); $table->timestamps(); }); $this->createTranslationTables(); } public function createTranslationTables() { Schema::create('core_page_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('origin_id')->unsigned(); $table->string('locale')->index(); $table->string('title', 255)->nullable(); $table->text('content')->nullable(); $table->text('short_desc')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->unique(['origin_id', 'locale']); $table->timestamps(); }); Schema::create('core_news_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('origin_id')->unsigned(); $table->string('locale')->index(); $table->string('title', 255)->nullable(); $table->text('content')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->timestamps(); }); Schema::create('core_news_category_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('origin_id')->unsigned(); $table->string('locale')->index(); $table->string('name', 255)->nullable(); $table->text('content')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->timestamps(); }); Schema::create('core_tag_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('origin_id')->unsigned(); $table->string('locale')->index(); $table->string('name', 255)->nullable(); $table->text('content')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->timestamps(); }); Schema::create('core_menu_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('origin_id')->unsigned(); $table->string('locale')->index(); $table->longText('items')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->timestamps(); }); Schema::create('core_template_translations', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('origin_id')->unsigned(); $table->string('locale')->index(); $table->string('title', 255)->nullable(); $table->longText('content')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->timestamps(); }); Schema::create('bravo_location_translations', function (\Illuminate\Database\Schema\Blueprint $table) { $table->bigIncrements('id'); $table->bigInteger('origin_id')->nullable(); $table->string('locale', 10)->nullable(); $table->string('name', 255)->nullable(); $table->text('content')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->unique(['origin_id', 'locale']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bravo_attrs'); Schema::dropIfExists('bravo_terms'); Schema::dropIfExists('bravo_attrs_translations'); Schema::dropIfExists('bravo_terms_translations'); Schema::dropIfExists('core_page_translations'); Schema::dropIfExists('core_news_translations'); Schema::dropIfExists('core_news_category_translations'); Schema::dropIfExists('core_tag_translations'); Schema::dropIfExists('core_menu_translations'); Schema::dropIfExists('core_template_translations'); Schema::dropIfExists('bravo_location_translations'); } }