mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -07:00
Fixed errors
This commit is contained in:
parent
0178090986
commit
a325a2ff56
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
}
|
);
|
Loading…
Add table
Add a link
Reference in a new issue