Re: [openstack-dev] [Neutron] How to add vendor specific db tables in neutron

2015-08-27 Thread Ihar Hrachyshka
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 08/27/2015 12:05 PM, bharath wrote: > Hi, > > Liberty code freeze is September 1st. But i have to add a vendor > specific table for liberty release . As Vendor specific alembic > support in neutron is seems to be still under progress. Can i >

Re: [openstack-dev] [Neutron] How to add vendor specific db tables in neutron

2015-08-27 Thread Anna Kamyshnikova
In external.py are stored names of table that was already created in Neutron, but then there models were moved to vendor repos. So adding new names in external.py won't help you. On Thu, Aug 27, 2015 at 1:05 PM, bharath wrote: > Hi, > > Liberty code freeze is September 1st. But i have to add a v

Re: [openstack-dev] [Neutron] How to add vendor specific db tables in neutron

2015-08-27 Thread bharath
Hi, Liberty code freeze is September 1st. But i have to add a vendor specific table for liberty release . As Vendor specific alembic support in neutron is seems to be still under progress. Can i simply add tables names in external.py under alembic_migration and push it upstream and implement ac

Re: [openstack-dev] [Neutron] How to add vendor specific db tables in neutron

2015-08-27 Thread Anna Kamyshnikova
Hi! Probably in your vendor repo is missing change that will allow neutron-db-manage to find the alembic migrations automatically if this project is installed. See examples of such changes in networking-cisco [1] and vmware-nsx [2]. [1] - https://review.openstack.org/214403 [2] - https://revie

Re: [openstack-dev] [Neutron] How to add vendor specific db tables in neutron

2015-08-27 Thread Ihar Hrachyshka
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 08/27/2015 10:36 AM, bharath wrote: > Hi , > > > I need to add a vendor specific db tables in neutron but vendor > specific are no more allowed in the neutron. Tables need to be > added to vendor repo itself. So i created alembic versioning in >

[openstack-dev] [Neutron] How to add vendor specific db tables in neutron

2015-08-27 Thread bharath
Hi , I need to add a vendor specific db tables in neutron but vendor specific are no more allowed in the neutron. Tables need to be added to vendor repo itself. So i created alembic versioning in vendor repo. and added new tables under vendor repo. But i am not seeing tables getting created whil