Skip to content
Snippets Groups Projects
Commit 97af66b7 authored by Emmanuel Mongin's avatar Emmanuel Mongin
Browse files

store status field in externaDB

parent c46a9494
No related branches found
No related tags found
No related merge requests found
......@@ -114,9 +114,10 @@ sub store {
$sth = $self->prepare( "
INSERT INTO externalDB
SET db_name = ?,
release = ?
release = ?,
status = ?
" );
$sth->execute( $exObj->dbname(), $exObj->release());
$sth->execute( $exObj->dbname(), $exObj->release(), $exObj->status);
$dbJustInserted = 1;
$sth = $self->prepare( "
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment