<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSubscriptionLogsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('subscription_logs', function (Blueprint $table) {
$table->id();
$table->uuid('uid');
$table->unsignedBigInteger('subscription_id');
$table->unsignedBigInteger('transaction_id')->nullable();
$table->string('type', 50)->nullable();
$table->text('data')->nullable();
$table->timestamps();
$table->foreign('subscription_id')->references('id')->on('subscriptions')->onDelete('cascade');
$table->foreign('transaction_id')->references('id')->on('subscription_transactions')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('subscription_logs');
}
}