mirror of https://github.com/4xmen/xshop.git
added rate system
parent
44b499d082
commit
c49bfe7565
@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Rate extends Model
|
||||||
|
{
|
||||||
|
use HasFactory;
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
<?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('rates', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->morphs('rateable');
|
||||||
|
$table->morphs('rater');
|
||||||
|
$table->tinyInteger('rate');
|
||||||
|
$table->unsignedBigInteger('evaluation_id');
|
||||||
|
$table->timestamps();
|
||||||
|
|
||||||
|
|
||||||
|
$table->foreign('evaluation_id')
|
||||||
|
->references('id')->on('evaluations');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('rates');
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue