mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
moved everything up a directory
This commit is contained in:
parent
448cd8d92e
commit
9a78f790a6
76 changed files with 0 additions and 0 deletions
17
RequestPlex.Core/Setup.cs
Normal file
17
RequestPlex.Core/Setup.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using Mono.Data.Sqlite;
|
||||
|
||||
using RequestPlex.Store;
|
||||
|
||||
namespace RequestPlex.Core
|
||||
{
|
||||
public class Setup
|
||||
{
|
||||
|
||||
public void SetupDb()
|
||||
{
|
||||
var db = new DbConfiguration(new SqliteFactory());
|
||||
db.CreateDatabase();
|
||||
TableCreation.CreateTables(db.DbConnection());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue