File: /var/www/html/owlcrm/app/first-project/database/migrations/2024_01_08_073820_create_books_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('books', function (Blueprint $table) {
$table->string('hindi');
$table->string('english');
$table->string('maths');
$table->string('sst');
$table->string('science');
$table->string('sanskrit');
$table->string('punjabi');
$table->string('drawing');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('books');
}
};