Primer commit proyecto Laravel
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('conceptos', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->date('fecha_pago');
|
||||
$table->decimal('monto', 8, 2);
|
||||
$table->integer('tipo');
|
||||
$table->boolean('recargo');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('conceptos');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user