Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BeHub-web
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dominik Rosiek
BeHub-web
Commits
ea3e9864
Commit
ea3e9864
authored
Nov 21, 2015
by
Rafal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add script
parent
db4f59c4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
delete_migrations.py
BeHub/delete_migrations.py
+19
-0
No files found.
BeHub/delete_migrations.py
0 → 100644
View file @
ea3e9864
#remove_migrations.py
"""
Run this file from a Django =1.7 project root.
Removes all migration files from all apps in a project.
"""
from
unipath
import
Path
this_file
=
Path
(
__file__
)
.
absolute
()
current_dir
=
this_file
.
parent
dir_list
=
current_dir
.
listdir
()
for
paths
in
dir_list
:
migration_folder
=
paths
.
child
(
'migrations'
)
if
migration_folder
.
exists
():
list_files
=
migration_folder
.
listdir
()
for
files
in
list_files
:
split
=
files
.
components
()
if
split
[
-
1
]
!=
Path
(
'__init__.py'
):
files
.
remove
()
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment