yudai09 / redmine_phonecall

redmine plugin for calling system operator.
0 stars 0 forks source link

fix: initialize DB tables #4

Open yudai09 opened 7 years ago

yudai09 commented 7 years ago

以下のテーブルは初期化されているべき。

MariaDB [redmine]> select * from escalation_rules;
ERROR 1146 (42S02): Table 'redmine.escalation_rules' doesn't exist
MariaDB [redmine]> select * from escalation_users;
ERROR 1146 (42S02): Table 'redmine.escalation_users' doesn't exist
MariaDB [redmine]> select * from twilio_phone_number;
ERROR 1146 (42S02): Table 'redmine.twilio_phone_number' doesn't exist
yudai09 commented 7 years ago

migrateは自動で走らないらしく以下が必要。

cd /usr/src/redmine/plugins/calls
rake redmine:plugins:migrate RAILS_ENV=production

参照: https://www.r-labs.org/projects/r-labs/wiki/%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E6%96%B9%E6%B3%95 自動化するためにはDockerfileに書かないといけない?