uvdesk / community-skeleton

UVdesk Opensource Community Helpdesk Project built for all to make a Full Ticketing Support System along with many more other features.
https://www.uvdesk.com
MIT License
7.15k stars 449 forks source link

Error Base table or view not found: 1146 Table 'uvdesk_prod_com.microsoft_app' doesn't exist after upgrade #669

Closed serjsv87 closed 1 year ago

serjsv87 commented 1 year ago

Bug report

Title

Error Base table or view not found: 1146 Table 'uvdesk_prod_com.microsoft_app' doesn't exist after upgrade

Steps to reproduce

It is important to provide a set of clear steps to reproduce this bug.If relevant please include code samples.

1. git clone https://github.com/uvdesk/community-skeleton.git .
2. git checkout 1.2
3. replace .env from old project
4. clear cache
5. add new mail configuration(/en/member/settings/microsoft-apps/xhr#trace-box-1) or go to en/member/settings/microsoft-apps

Expected result

Actual result

Base table or view not found: 1146 Table 'uvdesk_prod_com.microsoft_app' doesn't exist

komal-sh-27 commented 1 year ago

@serjsv87

You will be run the below command for the missing tables in your project:

$ php bin/console d:s:u --force

After that you will be clear cache of your project using the below command:

$ php bin/console c:c

Now check microsoft apps option working or not.

serjsv87 commented 1 year ago

Yea, it worked for me, I searched for this info in readmy git and inside the articles on the site. but didn't find it. Already see that doctrine:schema:update is in help bin/console But I think it would be nice to have it somewhere in readmy so I don't have to search for it. Thanks for your help!