Remove un-needed ATTACH command in migration script.

This was causing issues when using specified
	paths to database files by using a hard-coded
	name.
bulletsim
BlueWall 2011-08-15 12:59:17 -04:00
parent 70ea625447
commit e870442e31
1 changed files with 1 additions and 3 deletions

View File

@ -41,8 +41,6 @@ COMMIT;
:VERSION 2
ATTACH 'inventoryStore.db' AS old;
BEGIN TRANSACTION;
INSERT INTO inventoryfolders (folderName, type, version, folderID, agentID, parentFolderID) SELECT `name` AS folderName, `type` AS type, `version` AS version, `UUID` AS folderID, `agentID` AS agentID, `parentID` AS parentFolderID from old.inventoryfolders;