diff --git a/.idea/runConfigurations/Reset_DB_on_DEV.xml b/.idea/runConfigurations/Reset_DB_on_DEV.xml
new file mode 100644
index 0000000..b84b8e5
--- /dev/null
+++ b/.idea/runConfigurations/Reset_DB_on_DEV.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/runConfigurations/SQL_Fixtures.xml b/.idea/runConfigurations/SQL_Fixtures_on_DEV.xml
similarity index 88%
rename from .idea/runConfigurations/SQL_Fixtures.xml
rename to .idea/runConfigurations/SQL_Fixtures_on_DEV.xml
index 2fe9093..03ce960 100644
--- a/.idea/runConfigurations/SQL_Fixtures.xml
+++ b/.idea/runConfigurations/SQL_Fixtures_on_DEV.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/src/main/resources/sql/fixtures/fixtures.sh b/src/main/resources/sql/fixtures/fixtures.sh
index b3465c4..17ed9c0 100644
--- a/src/main/resources/sql/fixtures/fixtures.sh
+++ b/src/main/resources/sql/fixtures/fixtures.sh
@@ -1,7 +1,6 @@
#bin/bash
echo "Start fixtures"
-cat ./*.sql > ./allSQL.sql
+awk 'FNR==1{print "--------------------"}1' ./*.sql > ./allSQL.sql
docker exec -i postgresql_dc-project psql dc-project dc-project -q -b -v "ON_ERROR_STOP=1" < ./allSQL.sql
rm ./allSQL.sql
-echo "End fixtures"
-#sleep 20
\ No newline at end of file
+echo "End fixtures"
\ No newline at end of file
diff --git a/src/main/resources/sql/resetDB.sh b/src/main/resources/sql/resetDB.sh
new file mode 100644
index 0000000..15b3399
--- /dev/null
+++ b/src/main/resources/sql/resetDB.sh
@@ -0,0 +1,9 @@
+#bin/bash
+echo "Reset DB"
+awk 'FNR==1{print "--------------------"}1' \
+ ./migrations/*.down.sql \
+ ./migrations/*.up.sql \
+ ./functions/*/*.sql > ./allSQL.sql
+docker exec -i postgresql_dc-project psql dc-project dc-project -q -b -v "ON_ERROR_STOP=1" < ./allSQL.sql
+rm ./allSQL.sql
+echo "End reset"
\ No newline at end of file