Fixed errors

This commit is contained in:
Jamie.Rees 2017-06-13 14:49:52 +01:00
commit a325a2ff56
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ before_build:
- gulp publish - gulp publish
build_script: build_script:
- dotnet build - dotnet build
- dotnet test Ombi.Core.Tests - dotnet test
after_build: after_build:
- dotnet publish -c Release -r win10-x64 - dotnet publish -c Release -r win10-x64
- dotnet publish -c Release -r osx.10.12-x64 - dotnet publish -c Release -r osx.10.12-x64

View file

@ -56,11 +56,11 @@ CREATE TABLE IF NOT EXISTS Users
); );
CREATE TABLE IF NOT EXISTS RequestHistory CREATE TABLE IF NOT EXISTS RequestHistory
{ (
Id INTEGER PRIMARY KEY AUTOINCREMENT, Id INTEGER PRIMARY KEY AUTOINCREMENT,
Type INTEGER NOT NULL, Type INTEGER NOT NULL,
RequestedDate varchar(50) NOT NULL, RequestedDate varchar(50) NOT NULL,
RequestId INTEGER NOT NULL RequestId INTEGER NOT NULL
} );