Re: [sqlalchemy] Multiple table dependencies using relation SQLAlchemy

2015-07-28 Thread Victor Tingström
A follow-up question: If I remove the platform from fund, how do I update the entries in ts_types? Den måndag 27 juli 2015 kl. 17:26:40 UTC+2 skrev Michael Bayer: On 7/27/15 10:56 AM, Victor Tingström wrote: Hey guys! First off, thank you for the library. Now to the problem, I'm

[sqlalchemy] Multiple table dependencies using relation SQLAlchemy

2015-07-27 Thread Victor Tingström
Hey guys! First off, thank you for the library. Now to the problem, I'm currently trying to implement a simple timeseries database using `SQLAlchemy`. And so far I've seen the need for the following classes; First off is the `Platform` class (which is the highest in the hierarchy) import

Re: [sqlalchemy] Multiple table dependencies using relation SQLAlchemy

2015-07-27 Thread Victor Tingström
thank you again! Best, Victor Den måndag 27 juli 2015 kl. 17:26:40 UTC+2 skrev Michael Bayer: On 7/27/15 10:56 AM, Victor Tingström wrote: Hey guys! First off, thank you for the library. Now to the problem, I'm currently trying to implement a simple timeseries database using