summaryrefslogtreecommitdiffstats
path: root/apk_browser.install
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2011-03-01 17:57:21 +0100
committerCarlo Landmeter <clandmeter@gmail.com>2011-03-01 17:57:21 +0100
commit70101d13cb041a39d7c708bbfda0528cb55c38bd (patch)
tree845fd88602d66405eac53124830988f9e3eb498c /apk_browser.install
parentd6b56d8cbe3ff0394bd19f8933744f20485a9e7b (diff)
downloadapk_browser-70101d13cb041a39d7c708bbfda0528cb55c38bd.tar.bz2
apk_browser-70101d13cb041a39d7c708bbfda0528cb55c38bd.tar.xz
adjust field size
sqlite does not honor field size, MySQL does.
Diffstat (limited to 'apk_browser.install')
-rw-r--r--apk_browser.install6
1 files changed, 3 insertions, 3 deletions
diff --git a/apk_browser.install b/apk_browser.install
index 0786389..6fd47f9 100644
--- a/apk_browser.install
+++ b/apk_browser.install
@@ -175,7 +175,7 @@ function _apk_browser_field_vars() {
),
'apk_version' => array(
'label' => $t('Version'),
- 'length' => '60'
+ 'length' => '255'
),
'apk_size' => array(
'label' => $t('Size'),
@@ -195,11 +195,11 @@ function _apk_browser_field_vars() {
),
'apk_license' => array(
'label' => $t('License'),
- 'length' => '25'
+ 'length' => '255'
),
'apk_depends' => array(
'label' => $t('Dependencies'),
- 'length' => '2000'
+ 'length' => '255'
)
);
}