update migration
parent
24ac9e579a
commit
703a4bc505
|
|
@ -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}};"
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
||||
|
|
@ -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)
|
||||
|
|
@ -82,7 +82,7 @@ namespace OFBButte.Database.Migrations
|
|||
|
||||
b.Property<string>("BibleVersionsUsed");
|
||||
|
||||
b.Property<string>("BillsOnTime");
|
||||
b.Property<bool>("BillsOnTime");
|
||||
|
||||
b.Property<string>("CallToField");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue