wyyl/database/migrations/2022_06_30_085304_currency.php

39 lines
884 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class Currency extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('currencies', function (Blueprint $table) {
$table->id();
$table->string('name', 64);
$table->string('code', 16);
$table->string('symbol_left', 16);
$table->string('symbol_right', 16);
$table->char('decimal_place', 1);
$table->double('value', 15, 8);
$table->tinyInteger('status');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('currencies');
}
}