diff --git a/extras/scripts/migratedb b/extras/scripts/migratedb index ea6c60f94a..51d3d26e8e 100755 --- a/extras/scripts/migratedb +++ b/extras/scripts/migratedb @@ -46,19 +46,22 @@ echo " -- INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Twitter', 'twitter', 'Twitter support', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Twitter', 'twitter', 'Twitter support', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Facebook', 'facebook', 'Facebook support', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Facebook', 'facebook', 'Facebook support', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Foursquare', 'foursquare', 'Foursquare support', 'Aaron Kalair', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Foursquare', 'foursquare', 'Foursquare support', 'Aaron Kalair', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Google+', 'googleplus', 'Google+ support', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Google+', 'googleplus', 'Google+ support', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Expand URLs', 'expandurls', 'Expand shortened links.', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); " >> build-db_mysql.sql +VALUES ('Expand URLs', 'expandurls', 'Expand shortened links.', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); + +INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) +VALUES ('Insights Generator', 'insightsgenerator', 'Pluggable plugin populates the insights stream.', 'Gina Trapani', 'http://thinkup.com', '0.01', '1');" >> build-db_mysql.sql mv build-db_mysql.sql ../. diff --git a/webapp/install/sql/build-db_mysql.sql b/webapp/install/sql/build-db_mysql.sql index ad53782397..cdd175f19d 100644 --- a/webapp/install/sql/build-db_mysql.sql +++ b/webapp/install/sql/build-db_mysql.sql @@ -1,6 +1,6 @@ -- -- ThinkUp Database Creation Script --- Auto-generated by thinkup/extras/scripts/migratedb script on 2013-03-01 +-- Auto-generated by thinkup/extras/scripts/migratedb script on 2013-03-10 -- ALTER DATABASE DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; @@ -516,7 +516,7 @@ CREATE TABLE tu_users ( ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.'; --- Dump completed on 2013-03-01 20:40:31 +-- Dump completed on 2013-03-10 1:28:43 -- -- Insert DB Version @@ -529,16 +529,19 @@ VALUES ('application_options', 'database_version', '2.0-beta.4', NOW(), NOW()); -- INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Twitter', 'twitter', 'Twitter support', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Twitter', 'twitter', 'Twitter support', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Facebook', 'facebook', 'Facebook support', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Facebook', 'facebook', 'Facebook support', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Foursquare', 'foursquare', 'Foursquare support', 'Aaron Kalair', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Foursquare', 'foursquare', 'Foursquare support', 'Aaron Kalair', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Google+', 'googleplus', 'Google+ support', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Google+', 'googleplus', 'Google+ support', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) -VALUES ('Expand URLs', 'expandurls', 'Expand shortened links.', 'Gina Trapani', 'http://thinkupapp.com', '0.01', '1'); +VALUES ('Expand URLs', 'expandurls', 'Expand shortened links.', 'Gina Trapani', 'http://thinkup.com', '0.01', '1'); + +INSERT INTO tu_plugins (name , folder_name, description, author, homepage, version, is_active ) +VALUES ('Insights Generator', 'insightsgenerator', 'Pluggable plugin populates the insights stream.', 'Gina Trapani', 'http://thinkup.com', '0.01', '1');