| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 23 | public function up() | ||
| 24 |     { | ||
| 25 | Schema::create( | ||
| 26 |             config('follow.table_name'), | ||
| 27 |             function (Blueprint $table) { | ||
| 28 |                 $table->bigIncrements('id'); | ||
| 29 |                 $table->unsignedBigInteger('follower_id'); | ||
| 30 |                 $table->unsignedBigInteger('following_id'); | ||
| 31 |                 $table->timestamp('accepted_at')->nullable(); | ||
| 32 |                 $table->timestamp('rejected_at')->nullable(); | ||
| 33 |                 $table->timestamp('special_followed_at')->nullable(); | ||
| 34 | $table->timestamps(); | ||
| 35 | } | ||
| 47 |