One Hat Cyber Team
Your IP :
3.140.254.100
Server IP :
162.241.123.123
Server :
Linux sh016.hostgator.in 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 :
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
saicsazq
/
keedoai.com
/
database
/
migrations
/
Edit File:
2023_02_04_090730_create_prepaid_plans_table.php
<?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('prepaid_plans', function (Blueprint $table) { $table->id(); $table->string('plan_name'); $table->decimal('price', 15, 2)->unsigned(); $table->string('currency')->default('USD'); $table->string('status')->default('active')->comment('active|closed'); $table->integer('words')->default(0); $table->integer('images')->default(0); $table->integer('characters')->default(0); $table->integer('minutes')->default(0); $table->boolean('featured')->nullable()->default(false); $table->string('pricing_plan')->default('prepaid'); $table->string('model')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('prepaid_plans'); } };
Simpan