restart postgres to disconnect everybody
This commit is contained in:
parent
559be286b2
commit
9e8d0901d1
|
@ -1,4 +1,6 @@
|
|||
#!/usr/bin/sh
|
||||
sudo service postgresql stop
|
||||
sudo service postgresql start
|
||||
sudo -u postgres sh -c "dropdb note_db && psql -c 'CREATE DATABASE note_db OWNER note;'";
|
||||
echo 'reset db';
|
||||
find apps/ -path "*/migrations/*.py*" -not -name "__init__.py" -delete
|
||||
|
|
Loading…
Reference in New Issue