That is correct, schema.create is meant to be used early in development, not on prod databases,
in real life (in prod), one needs a strategy for schema evolution, it's something
that Squeryl does not address.
Before going in production, a good idea is to dump the schema with Schema.printDdl(println(_)),
put it in source control, and evolve things manually from there (or by using specialized tools).