관리-도구
편집 파일: 2023_12_14_001459_create_deposits_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDepositsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('deposits', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->integer('user_id')->index('deposit_user_id'); $table->date('date'); $table->string('deposit_ref', 192); $table->integer('account_id')->nullable()->index('deposit_account_id'); $table->integer('deposit_category_id')->index('deposit_category_id'); $table->float('amount', 10, 0); $table->text('description')->nullable(); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('deposits'); } }