This repository was archived by the owner on Feb 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,11 @@ public function up()
15
15
{
16
16
Schema::table ('websockets_statistics_entries ' , function (Blueprint $ table ) {
17
17
$ table ->renameColumn ('peak_connection_count ' , 'peak_connections_count ' );
18
+ });
19
+ Schema::table ('websockets_statistics_entries ' , function (Blueprint $ table ) {
18
20
$ table ->renameColumn ('websocket_message_count ' , 'websocket_messages_count ' );
21
+ });
22
+ Schema::table ('websockets_statistics_entries ' , function (Blueprint $ table ) {
19
23
$ table ->renameColumn ('api_message_count ' , 'api_messages_count ' );
20
24
});
21
25
}
@@ -29,7 +33,11 @@ public function down()
29
33
{
30
34
Schema::table ('websockets_statistics_entries ' , function (Blueprint $ table ) {
31
35
$ table ->renameColumn ('peak_connections_count ' , 'peak_connection_count ' );
36
+ });
37
+ Schema::table ('websockets_statistics_entries ' , function (Blueprint $ table ) {
32
38
$ table ->renameColumn ('websocket_messages_count ' , 'websocket_message_count ' );
39
+ });
40
+ Schema::table ('websockets_statistics_entries ' , function (Blueprint $ table ) {
33
41
$ table ->renameColumn ('api_messages_count ' , 'api_message_count ' );
34
42
});
35
43
}
You can’t perform that action at this time.
0 commit comments