summaryrefslogtreecommitdiff
path: root/_darcs/pristine/classes/Confirm_address.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-08 20:56:09 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-08 20:56:09 +0000
commit07e9e2dc3241eef1b803e655a5273f79cb758806 (patch)
tree0846f3e3cbefd39041e580bffbc7556eb7f45c93 /_darcs/pristine/classes/Confirm_address.php
parente67affdbbcdcaa9f43750389922b802d0b425ddb (diff)
Remove _darcs from git repository
Not sure how or why this got in there.
Diffstat (limited to '_darcs/pristine/classes/Confirm_address.php')
-rw-r--r--_darcs/pristine/classes/Confirm_address.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/_darcs/pristine/classes/Confirm_address.php b/_darcs/pristine/classes/Confirm_address.php
deleted file mode 100644
index ed3875d22..000000000
--- a/_darcs/pristine/classes/Confirm_address.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/**
- * Table Definition for confirm_address
- */
-require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
-
-class Confirm_address extends Memcached_DataObject
-{
- ###START_AUTOCODE
- /* the code below is auto generated do not remove the above tag */
-
- public $__table = 'confirm_address'; // table name
- public $code; // varchar(32) primary_key not_null
- public $user_id; // int(4) not_null
- public $address; // varchar(255) not_null
- public $address_extra; // varchar(255) not_null
- public $address_type; // varchar(8) not_null
- public $claimed; // datetime()
- public $sent; // datetime()
- public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
-
- /* Static get */
- function staticGet($k,$v=null)
- { return Memcached_DataObject::staticGet('Confirm_address',$k,$v); }
-
- /* the code above is auto generated do not remove the tag below */
- ###END_AUTOCODE
-
- function sequenceKey()
- { return array(false, false); }
-}