mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 11:25:42 +00:00
12 lines
136 B
Bash
Executable File
12 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
cd ../apps
|
|
|
|
for d in $(ls);do
|
|
if [ -d $d ] && [ -d $d/migrations ];then
|
|
rm -f $d/migrations/00*
|
|
fi
|
|
done
|
|
|