Actually I have experience with that sort of thing in php.
I already created such a DB-schema and Automatic-updater thing for my
company. For MSSQL and MYSQL.
But as my time is too much limited... (I have to do the complete I18N thing)
I had no time to make something for this one.
Maybe in the future is no one want to do this... ;-)
Greetings
Thomas
I18N Team Leader
----- Original Message -----
From: "Eric Coleman" <[EMAIL PROTECTED]>
To: "oetting" <[EMAIL PROTECTED]>
Cc: <[email protected]>
Sent: Friday, June 08, 2007 8:33 AM
Subject: Re: [fw-general] Deployment tool?
On Jun 8, 2007, at 2:03 AM, oetting wrote:
Year i know, it is rather cool. ZF is missing a database schema
abstraction
layer for this to be possible in the same way. There is a proposal for
this.
An alternative implementation could be done by automating the execution
of
raw SQL commands. The developer would specify files like this:
# UP
ALTER TABLE foo ADD COLUMN bar int(11);
# DOWN
ALTER TABLE foo DROP COLUMN bar;
A script would then automate execution series of these migration files.
This
would not require any schema abstraction. I have made a proof of concept
implementation of this, and would like to contribute in this area as
well,
if anyone finds it interesting.
I want to complete this component, and asked Rob if he minded, of course
he said he didn't, so I'll be looking at and hopefully submitting
something to get this closer to being a reality :-D