From: Nigel Metheringham Date: Wed, 1 Feb 2006 13:05:59 +0000 (+0000) Subject: Pod formatting cleanup in Cookbook X-Git-Tag: v0.05005~61 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=da4779ad043121cc4a8d1bc99ade71e70407bd72;p=dbsrgits%2FDBIx-Class.git Pod formatting cleanup in Cookbook --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index 2a8d17b..59df7df 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -505,11 +505,29 @@ namespace, which is currently left as an excercise for the reader. The following example shows simplistically how you might use DBIx::Class to deploy versioned schemas to your customers. The basic process is as follows: -1) Create a DBIx::Class schema -2) Save the schema -3) Deploy to customers -4) Modify schema to change functionality -5) Deploy update to customers +=over 4 + +=item 1. + +Create a DBIx::Class schema + +=item 2. + +Save the schema + +=item 3. + +Deploy to customers + +=item 4. + +Modify schema to change functionality + +=item 5. + +Deploy update to customers + +=back =head3 Create a DBIx::Class schema @@ -537,10 +555,19 @@ script suitable for each. To support PostgreSQL too: There are several ways you could deploy your schema. These are probably beyond the scope of this recipe, but might include: -1) Require customer to apply manually using their RDBMS. -2) Package along with your app, making database dump/schema update/tests +=over 4 + +=item 1. + +Require customer to apply manually using their RDBMS. + +=item 2. + +Package along with your app, making database dump/schema update/tests all part of your install. +=back + =head3 Modify the schema to change functionality As your application evolves, it may be necessary to modify your schema to