Search Postgresql Archives

Re: Schema version control

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> 
> So, 10.0 at 10057.
> 11.0 at 11023.
> 
> then 10.1 needs some fixes so db is bumped to 10058.
> 
> Then, later, you can upgrade 10057 to 11023, but you cant get 10058 to 11023.
> 
> Humm... maybe you need smarter upgrade scripts?  Would having logic in the script help?  Something like:
> 
> if not fieldExists('xyz) then alter table ...  add xyz ...
> 
> 
> 
> Or, maybe your schema numbering system is to broad?  Maybe each table could have a version number?
> 
> 
> Or some kinda flags like:
> create table dbver(key text);
> 
> then an update would be named: "add xyz to bob".
> 
> then the update code:
> 
> q = select key from dbver where key = 'add xyz to bob';
> if q.eof then
> 	alter table bob add xyz
> 


This is effectively the approach we've been working with so far, but it isn't great.  The issue is that you need to be really aware of what changes might or might not have been in the previous databases... This can be hard.

There's also the problem of updating data, etc.



-- 
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux