@@ -10,7 +10,7 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | public function up(): void |
| 12 | 12 | { |
| 13 | - Schema::create('comments', function (Blueprint $table) { |
|
| 13 | + Schema::create('comments', function(Blueprint $table) { |
|
| 14 | 14 | $table->id(); |
| 15 | 15 | if (config('commentify.user_uuid')) { |
| 16 | 16 | $table->foreignUuid('user_id')->constrained()->onDelete('cascade'); |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | public function up(): void |
| 12 | 12 | { |
| 13 | - Schema::create('comment_likes', function (Blueprint $table) { |
|
| 13 | + Schema::create('comment_likes', function(Blueprint $table) { |
|
| 14 | 14 | $table->id(); |
| 15 | 15 | if (config('commentify.user_uuid')) { |
| 16 | 16 | $table->foreignUuid('user_id')->nullable(); |