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.
25 lines
485 B
25 lines
485 B
// 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()
|
|
{
|
|
|
|
|
|
}
|
|
}
|
|
} |