diff options
author | Brion Vibber <brion@pobox.com> | 2010-09-16 12:36:18 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-09-16 12:36:18 -0700 |
commit | b98abc3ae77965c6935bfb87eef61a3cc436e82f (patch) | |
tree | 848bc58c261b71da32838d999931208209bb9309 /db | |
parent | 20a0a4acffc7f25ac4898130f98f2c0783a551db (diff) |
Ticket #2725 - add StatusNet Mobile & platform variants to default notice sources lists.
To add just these to an existing table:
INSERT INTO notice_source
(code, name, url, created)
VALUES
('StatusNet Mobile', 'StatusNet Mobile', 'http://status.net/mobile', now()),
('StatusNet iPhone', 'iPhone', 'http://status.net/iphone', now()),
('StatusNet Android', 'Android', 'http://status.net/android', now()),
('StatusNet Blackberry', 'Blackberry', 'http://status.net/blackberry', now());
Diffstat (limited to 'db')
-rw-r--r-- | db/notice_source.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/notice_source.sql b/db/notice_source.sql index 6bfd5c5f1..04d9d7ba6 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -52,6 +52,10 @@ VALUES ('socialoomphBfD4pMqz31', 'SocialOomph', 'http://www.socialoomph.com/', now()), ('spaz','Spaz','http://funkatron.com/spaz', now()), ('StatusNet Desktop', 'StatusNet Desktop', 'http://status.net/desktop', now()), + ('StatusNet Mobile', 'StatusNet Mobile', 'http://status.net/mobile', now()), + ('StatusNet iPhone', 'iPhone', 'http://status.net/iphone', now()), + ('StatusNet Android', 'Android', 'http://status.net/android', now()), + ('StatusNet Blackberry', 'Blackberry', 'http://status.net/blackberry', now()), ('tarpipe','tarpipe','http://tarpipe.com/', now()), ('tjunar','Tjunar','http://nederflash.nl/boek/titels/tjunar-air', now()), ('tr.im','tr.im','http://tr.im/', now()), |