Adding some new fields to biblioitems:
authorhdl <hdl>
Thu, 19 Jul 2007 10:21:22 +0000 (10:21 +0000)
committerhdl <hdl>
Thu, 19 Jul 2007 10:21:22 +0000 (10:21 +0000)
collectiontitle
collectionissn
collectionvolume

Changing publicationyear to text.

updater/updatedatabase

index 441fba8..26606ed 100755 (executable)
@@ -739,6 +739,49 @@ my %fielddefinitions = (
             default => '',
             extra   => '',
         },
+        {
+            field   => 'publicationyear',
+            type    => 'text',
+            null    => 'null',
+            default => '',
+            extra   => '',
+        },
+        {
+            field   => 'collectiontitle',
+            type    => 'mediumtext',
+            null    => 'null',
+            default => '',
+            extra   => '',
+        },
+        {
+            field   => 'collectionissn',
+            type    => 'mediumtext',
+            null    => 'null',
+            default => '',
+            extra   => '',
+        },
+        {
+            field   => 'collectionvolume',
+            type    => 'mediumtext',
+            null    => 'null',
+            default => '',
+            extra   => '',
+        },
+        {
+            field   => 'editionstatement',
+            type    => 'text',
+            null    => 'null',
+            default => '',
+            extra   => '',
+        },
+        {
+            field   => 'editionresponsability',
+            type    => 'text',
+            null    => 'null',
+            default => '',
+            extra   => '',
+        },
+              
     ],
     deletedbiblioitems => [
         {
@@ -2056,6 +2099,15 @@ $sth->finish;
 exit;
 
 # $Log$
+# Revision 1.172  2007/07/19 10:21:22  hdl
+# Adding some new fields to biblioitems:
+# collectiontitle
+# collectionissn
+# collectionvolume
+#
+#
+# Changing publicationyear to text.
+#
 # Revision 1.171  2007/07/02 02:30:16  rangi
 # Fix for bug 1296, making surnames uppercase a systems preference
 #