diff --git a/database/migrations/2021_09_04_192641_create_beers_table.php b/database/migrations/2021_09_04_192641_create_beers_table.php index 4adc8ef..0841668 100644 --- a/database/migrations/2021_09_04_192641_create_beers_table.php +++ b/database/migrations/2021_09_04_192641_create_beers_table.php @@ -16,7 +16,7 @@ class CreateBeersTable extends Migration Schema::create('beers', function (Blueprint $table) { $table->id(); $table->string('beer'); - $table->integer('rating'); + $table->string('rating'); $table->string('country'); $table->string('type'); $table->string('review')->nullable();