Skip to content

Commit 266706a

Browse files
committed
registering clean command with app
1 parent d03380b commit 266706a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from piccolo.conf.apps import AppConfig
22
from .commands.backwards import backwards
33
from .commands.check import check
4+
from .commands.clean import clean
45
from .commands.forwards import forwards
56
from .commands.new import new
67

78

89
APP_CONFIG = AppConfig(
910
app_name="migrations",
1011
migrations_folder_path="",
11-
commands=[backwards, check, forwards, new],
12+
commands=[backwards, check, clean, forwards, new],
1213
)

0 commit comments

Comments
 (0)