Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.32
14 Domain
7.3.33
gujo45me
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
gujo45me /
.trash /
database /
migrations /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
2018_05_19_095918_create_tipo_...
724
B
-rw-r--r--
2018_05_19_095938_create_local...
1.26
KB
-rw-r--r--
2018_05_19_100011_create_rol_t...
697
B
-rw-r--r--
2018_05_19_100103_create_usuar...
1.67
KB
-rw-r--r--
2018_06_04_193700_create_tipo_...
699
B
-rw-r--r--
2018_06_04_205751_create_prove...
1.11
KB
-rw-r--r--
2018_06_05_122855_create_tipo_...
661
B
-rw-r--r--
2018_06_05_122915_create_unida...
704
B
-rw-r--r--
2018_06_05_144006_create_produ...
1.88
KB
-rw-r--r--
2018_06_07_142211_create_compr...
1.68
KB
-rw-r--r--
2018_06_10_160517_create_detal...
1.31
KB
-rw-r--r--
2018_06_10_164208_create_produ...
1.25
KB
-rw-r--r--
2018_06_12_170312_create_clien...
1.16
KB
-rw-r--r--
2018_06_12_170320_create_tipo_...
740
B
-rw-r--r--
2018_06_12_170345_create_venta...
3.15
KB
-rw-r--r--
2018_06_12_171352_create_detal...
1.34
KB
-rw-r--r--
2018_06_25_084901_create_empre...
1.9
KB
-rw-r--r--
2018_07_11_123304_create_notas...
1.79
KB
-rw-r--r--
2018_07_14_183647_create_resum...
1.32
KB
-rw-r--r--
2018_07_14_184016_create_detal...
1.35
KB
-rw-r--r--
2018_07_22_133517_create_retir...
1.22
KB
-rw-r--r--
2018_07_22_174657_create_trasl...
1.17
KB
-rw-r--r--
2018_07_22_174854_create_detal...
1.01
KB
-rw-r--r--
2018_07_22_212307_create_egres...
1.37
KB
-rw-r--r--
2018_08_31_215100_create_profo...
1.59
KB
-rw-r--r--
2018_08_31_215128_create_detal...
1.24
KB
-rw-r--r--
2018_09_02_114349_create_guia_...
2.65
KB
-rw-r--r--
2018_11_17_094550_create_bajas...
1.89
KB
-rw-r--r--
2019_02_04_120222_create_detal...
1.18
KB
-rw-r--r--
2020_05_11_152356_create_deliv...
1.88
KB
-rw-r--r--
2020_05_11_152424_create_detal...
1.24
KB
-rw-r--r--
2021_11_03_195119_create_venta...
1.13
KB
-rw-r--r--
2021_12_08_095126_create_detal...
1.07
KB
-rw-r--r--
2024_01_03_114309_create_sujet...
764
B
-rw-r--r--
2024_01_03_114422_create_medio...
679
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 2018_09_02_114349_create_guia_remision_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateGuiaRemisionTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('guia_remision', function (Blueprint $table) { $table->integer('id_guia_remision')->autoIncrement(); $table->integer('id_usuario'); $table->integer('id_local'); $table->integer('id_venta')->nullable(); $table->integer('id_cliente')->nullable(); $table->integer('id_tipo_comprobante')->nullable(); $table->string('serie_guia', 5)->nullable(); $table->integer('numero_guia')->nullable(); $table->string('nombre_guia', 20)->nullable(); $table->date('fecha_emision')->nullable(); $table->date('fecha_traslado')->nullable(); $table->string('motivo', 50)->nullable(); $table->string('punto_partida', 200)->nullable(); $table->string('punto_llegada', 200)->nullable(); $table->string('nombre_transportista', 200)->nullable(); $table->string('documento_transportista', 15)->nullable(); $table->string('licencia', 20)->nullable(); $table->string('dni_chofer', 15)->nullable(); $table->string('nombre_chofer', 50)->nullable(); $table->string('apellido_chofer', 50)->nullable(); $table->string('sustento', 20)->nullable(); $table->integer('id_destinatario')->nullable(); $table->string('marca_placa', 50)->nullable(); $table->string('peso', 10)->nullable(); $table->string('observacion', 200)->nullable(); $table->string('estado_envio', 15)->nullable(); //REGISTRADO, ACEPTADO, NO ENVIADO, RECHAZADO $table->string('mensaje_envio', 500)->nullable(); $table->tinyInteger('estado')->default('1'); $table->timestamps(); $table->foreign('id_local')->references('id_local')->on('local'); $table->foreign('id_usuario')->references('id_usuario')->on('usuarios'); $table->foreign('id_venta')->references('id_venta')->on('ventas'); $table->foreign('id_cliente')->references('id_cliente')->on('clientes'); $table->foreign('id_tipo_comprobante')->references('id_tipo_comprobante')->on('tipo_comprobante'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('guia_remision'); } }
Close