/[drupal]/contributions/modules/biblio/biblio.install
ViewVC logotype

Diff of /contributions/modules/biblio/biblio.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.74, Fri May 29 14:25:04 2009 UTC revision 1.75, Mon Jun 1 01:25:11 2009 UTC
# Line 1  Line 1 
1  <?PHP  <?PHP
2  // $Id: biblio.install,v 1.73 2009/05/19 02:09:24 rjerome Exp $  // $Id: biblio.install,v 1.74 2009/05/29 14:25:04 rjerome Exp $
3  function biblio_install() {  function biblio_install() {
4    $result = array();    $result = array();
5    
# Line 1786  function biblio_update_6021() { Line 1786  function biblio_update_6021() {
1786    db_change_field($result, 'biblio', 'biblio_issn', 'biblio_issn', array('type' => 'varchar', 'length' => '128'));    db_change_field($result, 'biblio', 'biblio_issn', 'biblio_issn', array('type' => 'varchar', 'length' => '128'));
1787    return $result;    return $result;
1788  }  }
1789    function biblio_update_6022() {
1790      $result = array();
1791      $result[] = update_sql("UPDATE {biblio_fields} SET maxsize = 128 WHERE name = 'biblio_number'
1792                              OR name = 'biblio_other_number'
1793                              OR name = 'biblio_volume'
1794                              OR name = 'biblio_isbn'
1795                              OR name = 'biblio_issue'
1796                              OR name = 'biblio_type_of_work'
1797                              OR name = 'biblio_accession_number'
1798                              OR name = 'biblio_call_number'
1799                              OR name = 'biblio_number_of_volumes'
1800                              OR name = 'biblio_section'
1801                              OR name = 'biblio_issn' ");
1802      return $result;
1803    }
1804    

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75

  ViewVC Help
Powered by ViewVC 1.1.2