����
One Hat Cyber Team
One Hat Cyber Team
Your IP :
18.223.149.135
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
/
www
/
core
/
database
/
migrations
/
View File Name :
2020_05_26_000000_create_users_table.php
<?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->bigIncrements('id'); $table->string('name')->nullable(); $table->string('photo')->nullable(); $table->string('email')->unique()->nullable(); $table->string('username')->unique()->nullable(); $table->string('phone')->nullable(); $table->text('address')->nullable(); $table->string('country')->nullable(); $table->string('state')->nullable(); $table->string('city')->nullable(); $table->string('zipcode')->nullable(); $table->string('email_verified')->default(0); $table->text('email_verify_token')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }