A followup to my own post... Looks like that 'integer' (20081203140407) is coming from table 'schema_migrations' :
mysql> describe schema_migrations; +---------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------+--------------+------+-----+---------+-------+ | version | varchar(255) | NO | PRI | NULL | | +---------+--------------+------+-----+---------+-------+ 1 row in set (0.00 sec) mysql> select * from schema_migrations; +----------------+ | version | +----------------+ | 1 | | 10 | | 11 | | 12 | | 13 | | 14 | | 15 | | 16 | | 17 | | 18 | | 19 | | 2 | | 20 | | 20081203140407 | | 21 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | 9 | +----------------+ 22 rows in set (0.00 sec) Radiant hides a lot of stuff so it's not as easy to debug as regular Rails but the current version of the schema is indeed 20081203140407 according to db/schema.rb --Rob On Apr 3, 8:00 am, Rob Jones <[email protected]> wrote: > I've got a similar problem - trying to push a Mysql database (from a > Radiant app) > > $ > herokudb:pushmysql://username:passw...@localhost/craic_web_production?encoding=latin1 > Sending schema > Sending data > 9 tables, 172 records [...] > 00:00:00 > !!! Caught Server Exception | ETA: > --:--:-- > Taps Server Error: PGError ERROR: value "20081203140407" is out of > range for type integer --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
