| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function down() |
||
| 33 | { |
||
| 34 | Schema::table('websockets_statistics_entries', function (Blueprint $table) { |
||
| 35 | $table->renameColumn('peak_connections_count', 'peak_connection_count'); |
||
| 36 | }); |
||
| 37 | Schema::table('websockets_statistics_entries', function (Blueprint $table) { |
||
| 38 | $table->renameColumn('websocket_messages_count', 'websocket_message_count'); |
||
| 39 | }); |
||
| 40 | Schema::table('websockets_statistics_entries', function (Blueprint $table) { |
||
| 41 | $table->renameColumn('api_messages_count', 'api_message_count'); |
||
| 42 | }); |
||
| 45 |