Skip to content

Commit 00b8775

Browse files
author
Abdullah Ghanem
committed
Update 2015_10_24_10000_create_ratings_table.php
1 parent 667a297 commit 00b8775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2015_10_24_10000_create_ratings_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public function up()
1010
Schema::create('ratings', function (Blueprint $table) {
1111
$table->increments('id');
1212
$table->integer('rating');
13-
$table->morphs('reviewable');
13+
$table->morphs('ratingable');
1414
$table->morphs('author');
1515
$table->timestamps();
1616
});

0 commit comments

Comments
 (0)