Add IDF_EmailAddress to backup

release-1.1
Patrick Georgi 2011-03-25 20:39:11 +01:00
parent 2cce23b5b4
commit a531e34ec2
1 changed files with 3 additions and 1 deletions

View File

@ -53,6 +53,7 @@ function IDF_Migrations_Backup_run($folder, $name=null)
'IDF_Scm_Cache_Git',
'IDF_Queue',
'IDF_Gconf',
'IDF_EmailAddress',
);
$db = Pluf::db();
// Now, for each table, we dump the content in json, this is a
@ -98,6 +99,7 @@ function IDF_Migrations_Backup_restore($folder, $name)
'IDF_Scm_Cache_Git',
'IDF_Queue',
'IDF_Gconf',
'IDF_EmailAddress',
);
$db = Pluf::db();
$schema = new Pluf_DB_Schema($db);
@ -110,4 +112,4 @@ function IDF_Migrations_Backup_restore($folder, $name)
Pluf_Test_Fixture::load($data, false);
}
return true;
}
}