Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.44.253
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
database /
migrations /
Delete
Unzip
Name
Size
Permission
Date
Action
2014_10_12_000000_create_users_table.php
798
B
-rw-r--r--
2020-11-17 16:24
2014_10_12_100000_create_password_resets_table.php
683
B
-rw-r--r--
2020-11-17 16:24
2019_08_19_000000_create_failed_jobs_table.php
774
B
-rw-r--r--
2020-11-17 16:24
2021_02_02_182138_create_chat_tables.php
3.81
KB
-rw-r--r--
2021-02-02 18:22
Save
Rename
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }