-
Notifications
You must be signed in to change notification settings - Fork 33
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
Draft: feat: Add column to DB + Migration #377
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -338,6 +338,12 @@ | |
log.info(f'{new_mail_address} already exists in User') | ||
|
||
|
||
def _add_is_model_solution_column() -> bool: | ||
Solution = models.Solution | ||
_migrate_column_in_table_if_needed(Solution, Solution.is_model_solution) | ||
return True | ||
Comment on lines
+341
to
+344
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (code_refinement): Ensure the return value of The function always returns |
||
|
||
|
||
def is_tables_exists(tables: Union[Model, Iterable[Model]]) -> bool: | ||
if not isinstance(tables, (tuple, list)): | ||
tables = (tables,) | ||
|
@@ -369,6 +375,8 @@ | |
_add_user_course_constaint() | ||
_linter_email_migration() | ||
|
||
_add_is_model_solution_column() | ||
|
||
models.create_basic_roles() | ||
if models.User.select().count() == 0: | ||
models.create_demo_users() | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -624,6 +624,7 @@ class Solution(BaseModel): | |
exercise = ForeignKeyField(Exercise, backref='solutions') | ||
solver = ForeignKeyField(User, backref='solutions') | ||
checker = ForeignKeyField(User, null=True, backref='solutions') | ||
is_key_answer = BooleanField(default=False) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (code_clarification): Consider renaming The new column added to the |
||
state = CharField( | ||
choices=STATES.to_choices(), | ||
default=STATES.CREATED.name, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue (complexity): Consider abstracting the column addition into a more generic function.
While the added functionality in
_add_is_model_solution_column
achieves the intended migration task, it introduces a higher level of complexity and specificity to the migration module. This approach could potentially make the codebase harder to maintain, especially as more migrations are added over time. To streamline the migration process and adhere to the DRY principle, consider abstracting the column addition into a more generic function. For instance:This method can then be used for adding any column to any model, reducing the need for specific functions for each migration task. It simplifies the migration process, making the codebase easier to maintain and extend in the future.