MINI Sh3ll
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSmsSettingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('sms_settings', function (Blueprint $table) {
$table->increments('id');
$table->string('url')->nullable();
$table->string('mobile_number_parameter')->nullable();
$table->text('message_parameter')->nullable();
$table->string('username_parameter')->nullable();
$table->string('username_key_value')->nullable();
$table->string('password_parameter')->nullable();
$table->string('password_key_value')->nullable();
$table->string('senderid_parameter')->nullable();
$table->string('senderid_key_value')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('sms_settings');
}
}
OHA YOOOO