pets table
Schema::create('pets', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('name');
$table->date('birth_of_date');
$table->string('breed');
$table->string('gender');
$table->string('size')->nullable();
$table->string('tags');
$table->integer('age')->nullable();
$table->string('gallery')->nullable();
$table->text('description');
$table->timestamps();
$table->softDeletes();
});
pets table
Schema::create('pets', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('name');
$table->date('birth_of_date');
$table->string('breed');
$table->string('gender');
$table->string('size')->nullable();
$table->string('tags');
$table->integer('age')->nullable();
$table->string('gallery')->nullable();
$table->text('description');
$table->timestamps();
$table->softDeletes();
});