I'm developing a system with C # (MVC) and MySQL. Everything works perfectly fine when I use my local instance of the Database.
I've duplicated this database on UolHost and that's where something bizarre happens.
When I change the connection string (just the address) to connect to the UolHost database, when trying to login to the system, all the database tables are deleted and new AspNetUsers
tables are automatically created.
Why is the system erasing the database and building only these tables? And why does this only happen in the server database, while on the machine it works normally?
Someone, please, have a tip?