Edit File: 2023_04_15_105102_create_s_m_s_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSMSTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('s_m_s', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('key'); $table->string('sender_name'); $table->string('user_name'); $table->string('password'); $table->boolean('active'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('s_m_s'); } }
Back to File Manager