mirror of https://github.com/lidarr/Lidarr
25 lines
485 B
C#
25 lines
485 B
C#
|
// ReSharper disable RedundantUsingDirective
|
|||
|
|
|||
|
using System.Configuration;
|
|||
|
using System.Linq;
|
|||
|
using System;
|
|||
|
using System.IO;
|
|||
|
using Migrator.Providers;
|
|||
|
using Migrator.Providers.SqlServer;
|
|||
|
using NzbDrone.Core.Datastore;
|
|||
|
using PetaPoco;
|
|||
|
using MigrationsHelper = NzbDrone.Services.Service.Migrations.MigrationsHelper;
|
|||
|
|
|||
|
namespace NzbDrone.Services.Tests.Framework
|
|||
|
{
|
|||
|
internal static class TestDbHelper
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public static void WhipeDb()
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|