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.144.237.87
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
chat-demo-master /
database /
migrations /
Delete
Unzip
Name
Size
Permission
Date
Action
2014_10_12_000000_create_users_table.php
810
B
-rw-r--r--
2021-02-02 18:24
2014_10_12_100000_create_password_resets_table.php
683
B
-rw-r--r--
2021-02-02 18:24
2019_11_06_134235_create_chat_tables.php
3.81
KB
-rw-r--r--
2021-02-02 18:24
Save
Rename
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function (Blueprint $table) { $table->increments('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'); } }