update migration

master
dan 2019-07-24 23:09:35 -06:00
parent 24ac9e579a
commit 703a4bc505
5 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{
"App": {
"Environment": "Prod",
"MissionaryEmailAddress": "admin@oldfashionbaptistbutte.com"
"MissionaryEmailAddress": "contact@oldfashionbaptistbutte.com"
},
"ConnectionStrings": {
"OFBContext": "server=localhost;database=ofb2;user=ofbapi2;password={{db_pass}};"

View File

@ -82,7 +82,7 @@ namespace OFBButte.Console
RestAndRelaxation = "Rest all the time",
BibleVersionOpinion = "Only KJV",
BibleVersionsUsed = "KJV",
BillsOnTime = "very important",
BillsOnTime = true ,
CallToField = "Called by God",
CellPhone = "222-555-9899",
HomePhone = "111-555-3343",

View File

@ -9,7 +9,7 @@ using OFBButte.Database;
namespace OFBButte.Database.Migrations
{
[DbContext(typeof(OFBContext))]
[Migration("20190723034849_Initial")]
[Migration("20190725050852_Initial")]
partial class Initial
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
@ -84,7 +84,7 @@ namespace OFBButte.Database.Migrations
b.Property<string>("BibleVersionsUsed");
b.Property<string>("BillsOnTime");
b.Property<bool>("BillsOnTime");
b.Property<string>("CallToField");

View File

@ -78,7 +78,7 @@ namespace OFBButte.Database.Migrations
RepentanceNecessary = table.Column<bool>(nullable: false),
RepentanceDefinition = table.Column<string>(nullable: true),
Fundamentalist = table.Column<bool>(nullable: false),
BillsOnTime = table.Column<string>(nullable: true),
BillsOnTime = table.Column<bool>(nullable: false),
LateBills = table.Column<string>(nullable: true),
LateBillActionTaken = table.Column<string>(nullable: true),
PotentialHarvest = table.Column<string>(nullable: true)

View File

@ -82,7 +82,7 @@ namespace OFBButte.Database.Migrations
b.Property<string>("BibleVersionsUsed");
b.Property<string>("BillsOnTime");
b.Property<bool>("BillsOnTime");
b.Property<string>("CallToField");