8 lines
198 B
Bash
Executable File
8 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
. .env
|
|
cat << EOF | ./query.sh
|
|
update faces set identityId=NULL where identityId is not null;
|
|
delete from identities where id>0;
|
|
delete from sqlite_sequence where name='identities';
|
|
EOF
|