<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSenderidPlansTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('senderid_plans', function (Blueprint $table) {
$table->id();
$table->uuid('uid');
$table->unsignedBigInteger('currency_id')->nullable();
$table->decimal('price', 16, 2);
$table->string('billing_cycle',50);
$table->integer('frequency_amount');
$table->string('frequency_unit',5);
$table->timestamps();
// foreign
$table->foreign('currency_id')->references('id')->on('currencies')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('senderid_plans');
}
}