-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodel.py
More file actions
18 lines (16 loc) · 734 Bytes
/
Copy pathmodel.py
File metadata and controls
18 lines (16 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from google.appengine.ext import db
class GoogleSLIds(db.Model):
google_id = db.StringProperty(multiline=False)
google_email = db.StringProperty(multiline=False)
sl_key = db.StringProperty(multiline=False)
sl_name = db.StringProperty(multiline=False)
verifed = db.BooleanProperty(default=False)
datetime = db.DateTimeProperty()
vericode = db.StringProperty()
sentim = db.BooleanProperty(default=False)
class Lookup(db.Model):
av = db.StringProperty(multiline=False)
product = db.StringProperty(multiline=False)
ownurl = db.StringProperty(multiline=False, indexed=False)
securl = db.StringProperty(multiline=False, indexed=False)
puburl = db.StringProperty(multiline=False, indexed=False)