Skip to content

Commit

Permalink
Deleted PSAUsers class and mapping.
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Dec 5, 2017
1 parent 18c0130 commit 80718cd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions lib/galaxy/model/__init__.py
Expand Up @@ -5189,15 +5189,6 @@ def save(self):
self._save_instance(self)


class PSAUsers(object):
def __init__(self, username, password, name, email, active):
self.username = username
self.password = password
self.name = name
self.email = email
self.active = active


class Page(object, Dictifiable):
dict_element_visible_keys = ['id', 'title', 'latest_revision_id', 'slug', 'published', 'importable', 'deleted']

Expand Down
9 changes: 0 additions & 9 deletions lib/galaxy/model/mapping.py
Expand Up @@ -149,15 +149,6 @@
Column('lifetime', Integer),
Column('assoc_type', VARCHAR(64)))

# TODO: delete this
model.PSAUsers = Table(
"users", metadata,
Column('id', Integer, primary_key=True),
Column('username', VARCHAR(200)),
Column('password', VARCHAR(200)),
Column('name', VARCHAR(100)),
Column('email', VARCHAR(200)),
Column('active', BOOLEAN))

model.PasswordResetToken.table = Table(
"password_reset_token", metadata,
Expand Down

0 comments on commit 80718cd

Please sign in to comment.