관리-도구
편집 파일: 2023_12_14_001459_create_accounts_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAccountsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('accounts', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->string('account_num', 192); $table->string('account_name', 192); $table->float('initial_balance', 10, 0); $table->float('balance', 10, 0); $table->text('note')->nullable(); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('accounts'); } }