This is feasible as the schema setup in rails is db-agnostic. Edit database.yml w/ sqlite driver Generate your tables in sqlite rake db:schema:dump (this gives you schema.rb, move to production w/ database.yml w/ mysql driver) rake db:schema:load
- Jon On Sep 22, 2006, at 6:41 AM, Steven Noels wrote: > Hi all, > > as I said in the subject. > > My idea was to develop a website on my laptop using sqlite, and then > move into production on a different system afterwards, presumably > using MySQL. Is this feasible using rake and its friends? > > Related, I was somewhat surprised to find out that the templates to > be stored in the database as well. That means you need to resort to > manual copy-paste to move templates between instances that look the > same but don't share content or users. > > The templating language looks wonderful, BTW. Great work! > > </Steven> > -- > Steven Noels http://outerthought.org/ > Outerthought Open Source Java & XML > stevenn at outerthought.org stevenn at apache.org > > > _______________________________________________ > Radiant mailing list > Post: [email protected] > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant _______________________________________________ Radiant mailing list Post: [email protected] Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
