<?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('extensions', function (Blueprint $table) {
$table->id();
$table->string('name')->unique();
$table->string('slug');
$table->text('description',400)->nullable();
$table->string('image')->nullable();
$table->text('script')->nullable();
$table->text('shortcode')->nullable();
$table->text('support_image')->nullable();
$table->tinyInteger('status')->default(1)->comment('1=>enable, 2=>disable');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('extensions');
}
};
In case of an error, the API will return an error response containing a specific error code 400, 403 Failed and a user-friendly message. Refer to our API documentation for a comprehensive list of error codes and their descriptions.