-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: packages.area converted from varchar(8) to varchar
This can accomodate non-free-firmware. Nowadays there's no good reason to use an upper limit on varchar length, aside from having Postgres limit possible inputs.
- Loading branch information
1 parent
d86200b
commit 568fd48
Showing
2 changed files
with
6 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-- Remove size constraint on packages.area | ||
-- From varchar(8) to varchar | ||
-- This allows "non-free-firmware" | ||
|
||
ALTER TABLE packages ALTER COLUMN area TYPE varchar; |
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