ufutx.dma/database/migrations/2023_01_06_103814_create_services_table.php
2026-03-04 14:42:40 +08:00

38 lines
843 B
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.
*
* @return void
*/
public function up()
{
Schema::create('services', function (Blueprint $table) {
$table->id();
$table->string('pic');
$table->string('title');
$table->string('subtitle');
$table->decimal('price', 7,2)->default(0);
$table->longText("describe")->nullable();
$table->integer('pv')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('services');
}
};