File tree 13 files changed +13
-242
lines changed
13 files changed +13
-242
lines changed Original file line number Diff line number Diff line change 9
9
<toc-element toc-title =" Prologue" >
10
10
<toc-element topic =" introduction.topic" />
11
11
<toc-element toc-title =" Upgrade Guide" >
12
- <toc-element topic =" upgrade-7.topic" toc-title =" Upgrade to 7.x" accepts-web-file-names-ref = " upgrade_guide " />
12
+ <toc-element topic =" upgrade-7.topic" toc-title =" Upgrade to 7.x" />
13
13
<toc-element topic =" upgrade-6.topic" toc-title =" Upgrade to 6.x" />
14
14
<toc-element topic =" upgrade-5.topic" toc-title =" Upgrade to 5.x" />
15
15
<toc-element topic =" upgrade-4.topic" toc-title =" Upgrade to 4.x" />
Original file line number Diff line number Diff line change 9
9
<description >Created after removal of "Running Operations" from Deploy Operations</description >
10
10
<accepts >guide/basic.html</accepts >
11
11
</rule >
12
- <rule id =" upgrade_guide" >
13
- <description >Created after removal of "Running Operations" from Deploy Operations</description >
14
- <accepts >upgrade-guide/</accepts >
15
- </rule >
16
12
<rule id =" guide_running" >
17
13
<description >Created after removal of "Running Operations" from Deploy Operations</description >
18
14
<accepts >guide/running.html</accepts >
Original file line number Diff line number Diff line change 31
31
%artisan% %command_rollback% --step=5
32
32
</code-block >
33
33
34
- <p >
35
- The <code >%command_reset%</code > command will roll back all of your application's operations:
36
- </p >
37
-
38
- <code-block lang =" bash" >
39
- %artisan% %command_reset%
40
- </code-block >
41
-
42
34
<p >
43
35
For example:
44
36
</p >
45
37
46
38
<code-block lang =" bash" src =" rollback.sh" />
47
39
48
- <chapter
49
- title =" Roll Back & Operation Using A Single Command"
50
- id =" roll_back_amp_operation_using_a_single_command"
51
- >
52
- <p >
53
- The
54
- <code >%command_refresh%</code > command will roll back all of your operations and then execute the operations command.
55
- This command effectively re-creates your entire database:
56
- </p >
57
-
58
- <code-block lang =" bash" >
59
- %artisan% %command_refresh%
60
- </code-block >
61
-
62
- <p >
63
- You may roll back and re-run a limited number of operations by providing the <code >step</code > option to the
64
- <code >%command_refresh%</code > command.
65
- For example, the following command will roll back and re-run the last five operations:
66
- </p >
67
-
68
- <code-block lang =" bash" >
69
- %artisan% %command_refresh% --step=5
70
- </code-block >
71
- </chapter >
72
-
73
40
<chapter title =" Drop All & Rerun Operations" id =" drop_all_amp_rerun_operations" >
74
41
<p >
75
42
The
Original file line number Diff line number Diff line change 21
21
<procedure title =" Minor-Impact Changes" id =" minor_impact_changes" >
22
22
<step ><a href =" #laravel_10_is_now_unsupported" /></step >
23
23
<step ><a href =" #removed_operations_upgrade_console_command" /></step >
24
+ <step ><a href =" #removed_operations_refresh_console_command" /></step >
25
+ <step ><a href =" #removed_operations_reset_console_command" /></step >
24
26
</procedure >
25
27
26
28
<procedure title =" Low-Impact Changes" id =" low_impact_changes" >
57
59
It does not exist now.
58
60
</chapter >
59
61
62
+ <chapter title =" Removed `operations:refresh` console command" id =" removed_operations_refresh_console_command" >
63
+ We decided to drop support for the <code >php artisan operations:refresh</code > console command.
64
+ It does not exist now.
65
+ </chapter >
66
+
67
+ <chapter title =" Removed `operations:reset` console command" id =" removed_operations_reset_console_command" >
68
+ We decided to drop support for the <code >php artisan operations:reset</code > console command.
69
+ It does not exist now.
70
+ </chapter >
71
+
60
72
<chapter title =" Strict typification" id =" strict_typification" >
61
73
<p >
62
74
A strict typification has been added to all the project files.
Original file line number Diff line number Diff line change 8
8
9
9
<var name =" command_make" value =" make:operation" />
10
10
<var name =" command_run" value =" operations" />
11
- <var name =" command_refresh" value =" operations:refresh" />
12
- <var name =" command_reset" value =" operations:reset" />
13
11
<var name =" command_fresh" value =" operations:fresh" />
14
12
<var name =" command_rollback" value =" operations:rollback" />
15
13
<var name =" command_status" value =" operations:status" />
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ class Names
10
10
public const Fresh = 'operations:fresh ' ;
11
11
public const Install = 'operations:install ' ;
12
12
public const Make = 'make:operation ' ;
13
- public const Refresh = 'operations:refresh ' ;
14
- public const Reset = 'operations:reset ' ;
15
13
public const Rollback = 'operations:rollback ' ;
16
14
public const Status = 'operations:status ' ;
17
15
}
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ protected function registerCommands(): void
44
44
Console \FreshCommand::class,
45
45
Console \InstallCommand::class,
46
46
Console \MakeCommand::class,
47
- Console \RefreshCommand::class,
48
- Console \ResetCommand::class,
49
47
Console \RollbackCommand::class,
50
48
Console \StatusCommand::class,
51
49
]);
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments