Files @ b596a0e63466
Branch filter:

Location: kallithea/rhodecode/lib/dbmigrate/migrate/__init__.py

Ankit Solanki
Fixing a small error in the repo settings screen

The 'Add another member' option didn't work in 1.2 beta, as the field
was renamed from `perm_new_user_name` to `perm_new_member_name`
1
2
3
4
5
6
7
8
9
"""
   SQLAlchemy migrate provides two APIs :mod:`migrate.versioning` for
   database schema version and repository management and
   :mod:`migrate.changeset` that allows to define database schema changes
   using Python.
"""

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