feat: initial commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?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('balances', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->decimal('balance');
|
||||
$table->foreignId('ledger_id')->nullable()->constrained()->onDelete('cascade');
|
||||
$table->foreignId('account_id')->nullable()->constrained()->onDelete('cascade');
|
||||
$table->boolean('is_starting')->default(false);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('balances');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user