thanks - questions
James Henstridge
james at jamesh.id.au
Wed Jul 11 08:04:40 BST 2007
On 11/07/07, Eugene Van den Bulke <eugene.vandenbulke at gmail.com> wrote:
> I got scared by the CREATE TABLE ... statements :P Only half joking
> but that could scare people off. An Elixir create_table() statement is
> sweeter.
Note that you can use whatever tool you want to create the tables
(including GUI tools like pgAdmin for Postgres).
For large scale production systems, table generation is not usually
that useful. You generally want a way of getting from the existing
schema to the new schema and migrate data as needed. This calls for a
system that keeps track of incremental patches to the schema rather
than generating the entire schema in one go.
James.
More information about the storm
mailing list