You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
868 B
30 lines
868 B
using System.Collections.Generic;
|
|
using Migrator.Framework;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.RootFolders;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
[Migration(20130203)]
|
|
public class Migration20130203 : NzbDroneMigration
|
|
{
|
|
protected override void MainDbUpgrade()
|
|
{
|
|
var objectDb = GetObjectDb();
|
|
|
|
using (var dataReader = Database.ExecuteQuery("SELECT * from RootDirs"))
|
|
{
|
|
var dirs = new List<RootFolder>();
|
|
while (dataReader.Read())
|
|
{
|
|
var rootFolder = new RootFolder { Path = dataReader["Path"].ToString() };
|
|
dirs.Add(rootFolder);
|
|
}
|
|
objectDb.InsertMany(dirs);
|
|
}
|
|
|
|
//Database.RemoveTable("RootDirs");
|
|
|
|
}
|
|
}
|
|
} |