-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate nightly with master (#793)
* Change status default value on Issue model * Implemented create time-card, closes #758 * Enhancement code after review * Enhancement code after review * Enhancement code after review * Add start_time, end_time, status and description to Item model, closes #768 * Enhancement code after review * Enhancement code after review * Implement the ADD verb on Item, closes #762 * Add a required import * Added Null error check * Enhancement code after review * Implemented the update method on the time-card controller, closes #759 * Implemented delete event type, closes #746 * Implement LIST verb on Item, closes #764 * Added new test case * The coding style is update * Typo * Fix the bug on creating release, closes #777 * Add release_cutoff column property to Project model, closes #776 * Add release_cutoff metadata on Project model * Modified the release model, closes #780, closes #3, closes #32 * Add SEARCH verb on Issue * Enhance query on searching Issue, closes #779 * Increased the coverage * The event model is modified, closes #755, closes #724, closes #721 * Add description to full text search * Implemented the search method on the member controller, clsoes #784 * Implemented the metadata method on the event controller * Filtering issues by unread on searching, closes #788 * Reverted changes * Removed the description field from event model * Filtering issues by the triage phase id * Implemented the get verb of timecard, closes #760 * Implemented the get verb of timecard, closes #760 * Implemented list verb for timecard, closes #761 * Resolved the conflict * Add timecard metadata test * Add timecard metadata test * Add item metadata test * Enhance imports * Modified the event metadata * Modified the project metadata * Fixed a bug on the auditlog callback related to the rollback request * Removing Redundant codes * Resolved the conflict * v0.42.0a7 * Add migrations * Add item and time card migration * v0.42.1a7 * Updated labels of item model * Enhance coding style in migration versions
- Loading branch information
1 parent
f1c5d4d
commit a5f4ce7
Showing
43 changed files
with
1,626 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
'startDate', | ||
'endDate', | ||
'eventTypeId', | ||
'repeat', | ||
] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
"""empty message | ||
Revision ID: 07d212f7a1d7 | ||
Revises: 26d0e0ee2536 | ||
Create Date: 2019-05-02 12:20:25.784006 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '07d212f7a1d7' | ||
down_revision = '26d0e0ee2536' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.execute( | ||
"CREATE TYPE event_repeat AS ENUM ('yearly', 'monthly', 'never');" | ||
) | ||
op.execute( | ||
"ALTER TABLE event ADD repeat event_repeat;" | ||
) | ||
op.drop_column('event', 'description') | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.execute( | ||
"ALTER TABLE event DROP COLUMN repeat;" | ||
) | ||
op.execute( | ||
"DROP TYPE event_repeat;" | ||
) | ||
op.add_column( | ||
'event', | ||
sa.Column( | ||
'description', | ||
sa.VARCHAR(), | ||
autoincrement=False, | ||
nullable=True | ||
) | ||
) | ||
# ### end Alembic commands ### | ||
|
Oops, something went wrong.