Rename database name.

This commit is contained in:
2020-02-10 02:52:13 +00:00
parent 9418c2f797
commit a8c63f7735
4 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ namespace Marechai
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. See http://go.microsoft.com/fwlink/?LinkId=723263 for guidance on storing connection strings.
services.AddDbContext<MarechaiContext>(options => options
.UseLazyLoadingProxies()
.UseMySql("server=localhost;port=3306;user=cicm;password=cicmpass;database=cicm;TreatTinyAsBoolean=false"));
.UseMySql("server=localhost;port=3306;user=marechai;password=marechaipass;database=marechai;TreatTinyAsBoolean=false"));
services.AddMvc();
}