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 :
2023_02_03_221340_create_contents_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('contents', function (Blueprint $table) { $table->id(); $table->bigInteger('user_id')->unsigned(); $table->longText('title')->nullable(); $table->longText('input_text')->nullable(); $table->longText('result_text')->nullable(); $table->string('model')->nullable(); $table->string('language')->nullable(); $table->string('template_code')->nullable(); $table->string('template_name')->nullable(); $table->string('workbook')->nullable(); $table->string('icon')->nullable(); $table->string('group')->nullable(); $table->string('language_name')->nullable(); $table->string('language_flag')->nullable(); $table->string('image')->nullable(); $table->integer('tokens')->nullable(); $table->integer('words')->nullable(); $table->string('plan_type')->comment('free|paid')->default('free'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contents'); } };