| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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('moneys', function (Blueprint $table) {
- $table->id();
- $table->unsignedBigInteger('member_id')->nullable();
- $table->foreign('member_id')->nullable()->references('id')->on('members')->onUpdate('cascade')->onDelete('cascade');
- $table->unsignedBigInteger('record_id')->nullable();
- $table->foreign('record_id')->nullable()->references('id')->on('records')->onUpdate('cascade')->onDelete('cascade');
- $table->decimal('amount', $precision = 8, $scale = 2);
- $table->datetime('date');
- $table->string('note')->nullable();
- $table->softDeletes();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('moneys');
- }
- };
|