Change projects.projectdivisions_id and project.projectcategories_id from TINYINT to INT so they match what is allowed in the division and category configuration

This commit is contained in:
james 2010-01-22 04:03:02 +00:00
parent 41347c1934
commit 522ea8206d
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
155
156

2
db/db.update.156.sql Normal file
View File

@ -0,0 +1,2 @@
ALTER TABLE `projects` CHANGE `projectcategories_id` `projectcategories_id` INT UNSIGNED NOT NULL DEFAULT '0';
ALTER TABLE `projects` CHANGE `projectdivisions_id` `projectdivisions_id` INT UNSIGNED NOT NULL DEFAULT '0';