Skip to content

Manage courses (Sourcery refactored) #313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions lms/lmsdb/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,7 @@ def _drop_constraint_if_needed(table: Type[Model], column_name: str) -> bool:
def has_column_named(table: Model, column_name: str) -> bool:
db = db_config.database
columns = {col.name for col in db.get_columns(table.__name__.lower())}
if column_name not in columns:
return False
return True
return column_name in columns
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function has_column_named refactored with the following changes:



def _add_api_keys_to_users_table(table: Model, _column: Field) -> None:
Expand Down