File "2022_05_23_215802_create_crypto_records_table.php"

Full Path: /home/fundopuh/trader.fxex.org/database/migrations/2022_05_23_215802_create_crypto_records_table.php
File size: 798 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateCryptoRecordsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('crypto_records', function (Blueprint $table) {
            $table->id();
            $table->string('source')->nullable();
            $table->string('dest')->nullable();
            $table->float('amount')->nullable();
            $table->float('quantity')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('crypto_records');
    }
}