swh.lister.gitlab: Remove indexable column from gitlab lister

This commit is contained in:
Antoine R. Dumont (@ardumont) 2018-07-12 13:41:47 +02:00
parent 2648f1ae2e
commit 4db15aaf16
No known key found for this signature in database
GPG key ID: 52E2E9840D10C3B8
6 changed files with 72 additions and 18 deletions

View file

@ -1,13 +1,13 @@
# Copyright (C) 2017 the Software Heritage developers
# Copyright (C) 2017-2018 the Software Heritage developers
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from sqlalchemy import Column, Boolean, Integer
from swh.lister.core.models import ModelBase
from swh.lister.core.models import IndexingModelBase
class GitHubModel(ModelBase):
class GitHubModel(IndexingModelBase):
"""a GitHub repository"""
__tablename__ = 'github_repos'