Files @ ffd45b185016
Branch filter:

Location: kallithea/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py - annotation

Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5.

This imports changes between changesets 21af6c4eab3d and 6177597791c2 in
RhodeCode's original repository, including only changes to Python files and HTML.

RhodeCode clearly licensed its changes to these files under GPLv3
in their /LICENSE file, which states the following:
The Python code and integrated HTML are licensed under the GPLv3 license.

(See:
https://code.rhodecode.com/rhodecode/files/v2.2.5/LICENSE
or
http://web.archive.org/web/20140512193334/https://code.rhodecode.com/rhodecode/files/f3b123159901f15426d18e3dc395e8369f70ebe0/LICENSE
for an online copy of that LICENSE file)

Conservancy reviewed these changes and confirmed that they can be licensed as
a whole to the Kallithea project under GPLv3-only.

While some of the contents committed herein are clearly licensed
GPLv3-or-later, on the whole we must assume the are GPLv3-only, since the
statement above from RhodeCode indicates that they intend GPLv3-only as their
license, per GPLv3ยง14 and other relevant sections of GPLv3.
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
2f83756f3041
2f83756f3041
2f83756f3041
2f83756f3041
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
72c525a7e7ad
07f248329a3b
6832ef664673
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
b5f03c1d2153
3c80eb712a78
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
5cacb51f25f1
5cacb51f25f1
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
fa6ba6727475
fa6ba6727475
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
fa6ba6727475
fa6ba6727475
e7478ac19f9f
e7478ac19f9f
aa7e45ad0cea
aa7e45ad0cea
fa6ba6727475
fa6ba6727475
aa7e45ad0cea
aa7e45ad0cea
e7478ac19f9f
e7478ac19f9f
fa6ba6727475
fa6ba6727475
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
5cacb51f25f1
e7478ac19f9f
e7478ac19f9f
a69d0029bd27
e7478ac19f9f
e7478ac19f9f
07fcf1683503
07fcf1683503
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
07f248329a3b
07f248329a3b
6832ef664673
5cacb51f25f1
07f248329a3b
da886cc79907
da886cc79907
da886cc79907
da886cc79907
da886cc79907
da886cc79907
da886cc79907
cf51bbfb120e
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
e7478ac19f9f
7f31de1584c6
7f31de1584c6
7f31de1584c6
7f31de1584c6
7f31de1584c6
07f248329a3b
de560c47dd03
07f248329a3b
07f248329a3b
de560c47dd03
07f248329a3b
7f31de1584c6
7f31de1584c6
7f31de1584c6
7f31de1584c6
5cacb51f25f1
da886cc79907
cf51bbfb120e
cf51bbfb120e
da886cc79907
da886cc79907
7f31de1584c6
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
07f248329a3b
import logging
import datetime

from sqlalchemy import *
from sqlalchemy.exc import DatabaseError
from sqlalchemy.orm import relation, backref, class_mapper
from sqlalchemy.orm.session import Session

from rhodecode.lib.dbmigrate.migrate import *
from rhodecode.lib.dbmigrate.migrate.changeset import *

from rhodecode.model.meta import Base

log = logging.getLogger(__name__)


def upgrade(migrate_engine):
    """ Upgrade operations go here.
    Don't create your own engine; bind migrate_engine to your metadata
    """

    #==========================================================================
    # Add table `groups``
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import Group as Group
    Group().__table__.create()

    #==========================================================================
    # Add table `group_to_perm`
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import UserRepoGroupToPerm
    UserRepoGroupToPerm().__table__.create()

    #==========================================================================
    # Add table `users_groups`
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import UserGroup
    UserGroup().__table__.create()

    #==========================================================================
    # Add table `users_groups_members`
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import UserGroupMember
    UserGroupMember().__table__.create()

    #==========================================================================
    # Add table `users_group_repo_to_perm`
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import UserGroupRepoToPerm
    UserGroupRepoToPerm().__table__.create()

    #==========================================================================
    # Add table `users_group_to_perm`
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import UserGroupToPerm
    UserGroupToPerm().__table__.create()

    #==========================================================================
    # Upgrade of `users` table
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import User

    #add column
    ldap_dn = Column("ldap_dn", String(length=255, convert_unicode=False, assert_unicode=None), nullable=True, unique=None, default=None)
    ldap_dn.create(User().__table__)

    api_key = Column("api_key", String(length=255, convert_unicode=False, assert_unicode=None), nullable=True, unique=None, default=None)
    api_key.create(User().__table__)

    #remove old column
    is_ldap = Column("is_ldap", Boolean(), nullable=False, unique=None, default=False)
    is_ldap.drop(User().__table__)

    #==========================================================================
    # Upgrade of `repositories` table
    #==========================================================================
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import Repository

    #ADD clone_uri column#

    clone_uri = Column("clone_uri", String(length=255, convert_unicode=False,
                                           assert_unicode=None),
                        nullable=True, unique=False, default=None)

    clone_uri.create(Repository().__table__)

    #ADD downloads column#
    enable_downloads = Column("downloads", Boolean(), nullable=True, unique=None, default=True)
    enable_downloads.create(Repository().__table__)

    #ADD column created_on
    created_on = Column('created_on', DateTime(timezone=False), nullable=True,
                        unique=None, default=datetime.datetime.now)
    created_on.create(Repository().__table__)

    #ADD group_id column#
    group_id = Column("group_id", Integer(), ForeignKey('groups.group_id'),
                  nullable=True, unique=False, default=None)

    group_id.create(Repository().__table__)

    #==========================================================================
    # Upgrade of `user_followings` table
    #==========================================================================

    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import UserFollowing

    follows_from = Column('follows_from', DateTime(timezone=False),
                          nullable=True, unique=None,
                          default=datetime.datetime.now)
    follows_from.create(UserFollowing().__table__)

    return


def downgrade(migrate_engine):
    meta = MetaData()
    meta.bind = migrate_engine