| Current Path : /var/www/html/dynaweb-cms-v1/stubs/ |
| Current File : /var/www/html/dynaweb-cms-v1/stubs/migration.stub |
<?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('{{tableName}}', function (Blueprint $table) {
{{idLine}}{{fields}}$table->unsignedBigInteger('created_by')->nullable();
$table->unsignedBigInteger('updated_by')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('{{tableName}}');
}
};