~ubuntu-branches/ubuntu/lucid/nurpawiki/lucid

« back to all changes in this revision

Viewing changes to database_upgrade.ml

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2009-09-19 23:52:52 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090919235252-sl6j8adj4cxc0oft
Tags: 1.2.3-2
* Add some patches:
  - Use-proper-connection-dependent-escaping.patch
  - Add-native-archive-to-META.patch
* Add build-dependency to quilt, add README.source
* Update the versioned dependency to libpostgresql-ocaml-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
  Buffer.contents logmsg
249
249
 
250
250
(** Check whether the nurpawiki schema is properly installed on Psql *)
251
 
let is_schema_installed ~(conn : Psql.connection) =
 
251
let is_schema_installed ~(conn : connection) =
252
252
  let sql = 
253
253
    "SELECT * from pg_tables WHERE (schemaname = 'public' OR schemaname = 'nw') AND "^
254
254
      "tablename = 'todos'" in