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.
Ombi/RequestPlex.Core/Setup.cs

18 lines
336 B

using Mono.Data.Sqlite;
using RequestPlex.Store;
namespace RequestPlex.Core
{
public class Setup
{
public void SetupDb()
{
var db = new DbConfiguration(new SqliteFactory());
db.CheckDb();
TableCreation.CreateTables(db.DbConnection());
}
}
}