mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 05:31:13 -07:00
17 lines
336 B
C#
17 lines
336 B
C#
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());
|
|
}
|
|
}
|
|
}
|