pai-sklep/database/migrations/2021_09_07_092431_create_pr...

35 lines
741 B
PHP
Raw Normal View History

2021-09-05 02:22:17 +02:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('products', function (Blueprint $table) {
2021-10-28 11:19:42 +02:00
$table->uuid("uuid")->primary()->unique();
2021-09-05 02:22:17 +02:00
$table->string("name", 255);
$table->string("description", 10000);
2021-11-14 14:51:49 +01:00
$table->decimal("price");
2021-09-05 02:22:17 +02:00
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('products');
}
}