-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cap buildroot overrides notes to a maximum of 2k characters and conve…
…rt the database field to UnicodeText Signed-off-by: Mattia Verga <[email protected]>
- Loading branch information
1 parent
935bd0a
commit 23daf7e
Showing
9 changed files
with
143 additions
and
17 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
bodhi/server/migrations/versions/1c97477e38ee_convert_br_override_notes_to_unicodetext.py
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,41 @@ | ||
# Copyright (c) 2020 Mattia Verga | ||
# | ||
# This file is part of Bodhi. | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
""" | ||
Convert buildroot override notes to unicodetext. | ||
Revision ID: 1c97477e38ee | ||
Revises: 325954bac9f7 | ||
Create Date: 2020-06-09 13:03:03.489398 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '1c97477e38ee' | ||
down_revision = 'f50dc199039c' | ||
|
||
|
||
def upgrade(): | ||
"""Convert buildrootoverrides notes column to UnicodeText.""" | ||
op.alter_column("buildroot_overrides", "notes", type_=sa.UnicodeText) | ||
|
||
|
||
def downgrade(): | ||
"""Convert back buildrootoverrides notes column to Unicode.""" | ||
op.alter_column("buildroot_overrides", "notes", type_=sa.Unicode) |
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 @@ | ||
Cap buildroot overrides notes to a maximum of 2k characters and convert the database field to UnicodeText |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Migrate relationship between TestCase and Package to TestCase and Build. The migration script will take care of migrate existing data to the new relation. | ||
The user_id column in comments table has been set to be not nullable. | ||
|
||
- Migrate relationship between TestCase and Package to TestCase and Build. The migration script will take care of migrate existing data to the new relation. | ||
- The user_id column in comments table has been set to be not nullable. | ||
- The notes column in buildroot_overrides table has been converted to UnicodeText (from Unicode). |