feat: add app and database modules
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
// MOBILE APPS
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('transactions', function (Blueprint $blueprint) {
|
||||
$blueprint->id();
|
||||
$blueprint->foreignId('user_id')->constrained()->onDelete('cascade');
|
||||
$blueprint->string('title');
|
||||
$blueprint->decimal('amount', 15, 2);
|
||||
$blueprint->string('type'); // income, expense
|
||||
$blueprint->string('category')->nullable();
|
||||
$blueprint->string('icon')->nullable();
|
||||
$blueprint->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('transactions');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user