Read this article via Hacker monthly magazine feb 2011.
There is a part talking about seed scripts.
Define what a seed script is.
Please give a simple example of a seed script for a webapp that runs on cakephp using MySQL as database.
Keep jargon to minimum. Metaphors and analogies are welcome.
Personally I usually keep a separate sql dump data that i change everytime i change schema. This method works for me. If there is a better way, I want to know.
A seed script is a script that generates dummy data, possibly using random values or a look up table of acceptable values. The script will create the SQL queries required to insert the data into the database and may also execute the query.