Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
eschiendorfer committed Sep 16, 2019
1 parent 7dd64c9 commit 9d98f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Customer.php
Expand Up @@ -60,7 +60,7 @@ class CustomerCore extends ObjectModel
'last_passwd_gen' => ['type' => self::TYPE_DATE, 'copy_post' => false, 'dbType' => 'timestamp', 'dbDefault' => ObjectModel::DEFAULT_CURRENT_TIMESTAMP],
'birthday' => ['type' => self::TYPE_DATE, 'validate' => 'isBirthDate', 'dbType' => 'date'],
'newsletter' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'dbDefault' => '0'],
'ip_registration_newsletter' => ['type' => self::TYPE_STRING, 'copy_post' => false, 'size' => 15],
'ip_registration_newsletter' => ['type' => self::TYPE_STRING, 'copy_post' => false, 'size' => 39],
'newsletter_date_add' => ['type' => self::TYPE_DATE, 'copy_post' => false],
'optin' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool', 'dbDefault' => '0'],
'website' => ['type' => self::TYPE_STRING, 'validate' => 'isUrl', 'size' => 128],
Expand Down

0 comments on commit 9d98f8c

Please sign in to comment.