����
One Hat Cyber Team
One Hat Cyber Team
Your IP :
3.133.130.103
Server IP :
192.185.194.254
Server :
Linux raider.websitewelcome.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home2
/
glenar
/
shop.glenar.com
/
database
/
migrations
/
View File Name :
2019_09_24_122557_create_languages_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateLanguagesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('languages', function(Blueprint $table) { $table->integer('languages_id', true); $table->string('name', 32)->index('IDX_LANGUAGES_NAME'); $table->char('code', 6); $table->text('image', 65535)->nullable(); $table->string('directory', 32)->nullable(); $table->integer('sort_order')->nullable(); $table->string('direction', 100); $table->integer('status')->default(1); $table->boolean('is_default')->nullable()->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('languages'); } }