This commit is contained in:
2020-07-02 17:29:32 +00:00
parent 2a4e493814
commit dc426d86a4
4 changed files with 7 additions and 5 deletions

View File

@@ -70,7 +70,7 @@ namespace rockfishCore.Controllers
}
System.Diagnostics.Debug.WriteLine("RvRController:Post - TODO: Test MustBeOlderThan date code");
//if there is an active trial for this db then can't do this they must request we re-release it or completely zap the database instead
var MustBeOlderThan = DateUtil.DateToEpoch(DateTime.Now.AddDays((RavenKeyFactory.TRIAL_PERIOD_DAYS * -1)));

View File

@@ -11,7 +11,7 @@ namespace rockfishCore.Models
}
public long Id { get; set; }
public long CustomerId { get; set; }
public long SiteId { get; set; }
public long? SiteId { get; set; }
public long DtCreated { get; set; }
public string RegTo { get; set; }
public string Key { get; set; }
@@ -21,8 +21,8 @@ namespace rockfishCore.Models
public long? DtFetched { get; set; }
public bool Fetched { get; set; }
public string DbId { get; set; }
public long DtLicenseExpiration { get; set; }
public long DtMaintenanceExpiration { get; set; }
public long? DtLicenseExpiration { get; set; }
public long? DtMaintenanceExpiration { get; set; }
}
}

View File

@@ -19,6 +19,8 @@ dotnet publish -c Release -o ./../publish/
//if need a debug version
dotnet publish -o ./../publish/
2.5) Runtime - make sure if runtime changed that server has latest
3) COPY
Copy over to production server, only need the .dll and the wwwroot folder contents,
remember not to delete the folders on the server only replace their contents because there are file permissions set

View File

@@ -106,7 +106,7 @@ window.onerror = function ( error ) {
</head>
<body class="rf-body">
<div id="app" class="container"></div>
<div id="app" class="container-fluid"></div>
<script src="js/lib/bootstrap.min.js?rfv=6.9"></script>
</body>