DB Sync after renaming a table

Hi,
I added a table to my DB and synched the app, then I started working on its multi-language settings.

right after that, I noticed I needed two extra fields, so I added them, BUT then I noticed it is better I rename the table to something else that servs its purpose better. when I renamed it and synched again, ASP.NET Maker asked me if the table should use the settings of an existing table so I chose the old name, and to my surprise all the multi-language work I did was reset to its defaults.

Regards,
R.S

You can open your project with a text editor and rename all:

<FieldPhrase ... TableName="oldtable" ... />

to:

<FieldPhrase ... TableName="newtable" ... />

Then save and open with ASP.NET Maker again.

Thanks for the tip. Will keep in mind for future.