Sip.conf with Realtime

I currently have OpenSIPS integrated with Asterisk Voicemail. The clients register with OpenSIPS and I just use Asterisk as a voicemail server. I have realtime set up and pointed to a mysql database which has VIEWs to the opensips subscribers. Currently the only way I can get MWI to work with this solution is to manually add peers to the asterisk sip.conf file like so

[9012XX2009]
type=peer
context=default
username=9012XX2009
host=6X.X0.XX3.14
fromdomain=6X.X0.XX3.14
insecure=port,invite
mailbox=9012XX2009

This user is also in the Asterisk ODBC database like so

mysql> select * from sipusers;
±-----------±-----------±-------±-------±--------------±---------±--------±-----------±----±--------±-----------±---------±--------------±---------±------------±---------±------±------------±--------------±--------------±-----±-----------+
| name | username | type | secret | host | callerid | context | mailbox | nat | qualify | fromuser | authuser | fromdomain | insecure | canreinvite | disallow | allow | restrictcid | defaultip | ipaddr | port | regseconds |
±-----------±-----------±-------±-------±--------------±---------±--------±-----------±----±--------±-----------±---------±--------------±---------±------------±---------±------±------------±--------------±--------------±-----±-----------+
| 9012XX2009 | 9012XX2009 | friend | NULL | irXXk.com | NULL | default | 9012XX2009 | yes | no | 90127XX009 | NULL | irXXck.com | NULL | no | NULL | NULL | NULL | irXXck.com | irXXck.com | 5060 | NULL |

My question is

Is it possible to get the manual peer stuff I am putting into sip.conf into Realtime ODBC? It seems like MWI doesn’t like Realtime.