Skip to content

Commit

Permalink
Add fix for from_email bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Ballai committed Feb 11, 2011
1 parent 5d818cc commit db580ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion openvbx.sql
Expand Up @@ -298,7 +298,6 @@ INSERT INTO auth_types (description, tenant_id)
INSERT INTO settings
(name, value, tenant_id)
VALUES
('from_email' , '', 1),
('dash_rss', '', 1),
('theme', '', 1),
('version', '0.90', 1),
Expand Down
3 changes: 3 additions & 0 deletions updates/46.sql
@@ -0,0 +1,3 @@
DELETE FROM settings where name='from_email' and value='';
UPDATE `settings` SET `value` = '0.90' WHERE `name` = 'version';
UPDATE `settings` SET `value` = 46 WHERE `name` = 'schema-version';

0 comments on commit db580ca

Please sign in to comment.