Jeff Cohen
2006-Jan-27 01:05 UTC
[Rails] Before I write this myself, is there already an easier way?
Recently I''ve wanted to be able to take the data I''ve painstakingly defined in my fixture files and slurp it up into my development database so I can play with my website (locally, in development mode) with the same data I use in my tests. In a similar vein, I want to take the table definitions in the development_structure.sql file and use it to re-define my development database schema. Unless I''m missing something obvious, when someone changes the db schema commits it into our subversion repository, I always have to hand-update my development db to match the new schema (if I don''t want to toast the data that''s already in there), or fire up my db tool, drop all the databases, then execute the _structure.sql script (and lose all my data). Is there already something in rails that can do one or both of these for me? I guess I could take a whack at writing a couple of rake tasks, but I''m hoping that surely someone else has already written these already? Thanks! Jeff www.softiesonrails.com -- Posted via http://www.ruby-forum.com/.
Marcel Molina Jr.
2006-Jan-27 01:21 UTC
[Rails] Before I write this myself, is there already an easier way?
On Fri, Jan 27, 2006 at 02:05:24AM +0100, Jeff Cohen wrote:> Recently I''ve wanted to be able to take the data I''ve painstakingly > defined in my fixture files and slurp it up into my development database > so I can play with my website (locally, in development mode) with the > same data I use in my tests. > > In a similar vein, I want to take the table definitions in the > development_structure.sql file and use it to re-define my development > database schema. Unless I''m missing something obvious, when someone > changes the db schema commits it into our subversion repository, I > always have to hand-update my development db to match the new schema (if > I don''t want to toast the data that''s already in there), or fire up my > db tool, drop all the databases, then execute the _structure.sql script > (and lose all my data). > > Is there already something in rails that can do one or both of these for > me? > > I guess I could take a whack at writing a couple of rake tasks, but I''m > hoping that surely someone else has already written these already?rake db_schema_import rake load_fixtures (all rake tasks are listed by running rake -T) marcel -- Marcel Molina Jr. <marcel@vernix.org>
Rob Biedenharn
2006-Jan-27 01:24 UTC
[Rails] Before I write this myself, is there already an easier way?
At 1/26/2006 08:05 PM, you wrote:>Recently I''ve wanted to be able to take the data I''ve painstakingly >defined in my fixture files and slurp it up into my development database >so I can play with my website (locally, in development mode) with the >same data I use in my tests.rake load_fixtures (you lose any data in your development database however)>In a similar vein, I want to take the table definitions in the >development_structure.sql file and use it to re-define my development >database schema. Unless I''m missing something obvious, when someone >changes the db schema commits it into our subversion repository, I >always have to hand-update my development db to match the new schema (if >I don''t want to toast the data that''s already in there), or fire up my >db tool, drop all the databases, then execute the _structure.sql script >(and lose all my data).You need to learn about Migrations http://api.rubyonrails.org/classes/ActiveRecord/Migration.html but there''s more syntax explained with: http://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html>Is there already something in rails that can do one or both of these for >me? > >I guess I could take a whack at writing a couple of rake tasks, but I''m >hoping that surely someone else has already written these already? > >Thanks! >Jeff >www.softiesonrails.comYou''re Welcome, -Rob Rob Biedenharn Rob@agileconsultingllc.com Agile Consulting LLC http://agileconsultingllc.com 513-295-4739 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060127/77882ced/attachment.html
matthew clark
2006-Jan-27 04:38 UTC
[Rails] Before I write this myself, is there already an easier way?
rake load_fixtures> (you lose any data in your development database however)You do, but if your fixtures are set up properly, so what? Why would there be data in a development database that isn''t in the fixtures? If there is, then the time spent tip-toeing around your databasee is going to nickel and dime you until you''ve spent much more time doing things the hard way than just taking an hour and writing robust fixtures. Worse, you''ll be less inclined to make data structure changes because of the extra work managing data, when a structure change really is the best choice for the project. I recommend making the most out of tools like fixtures to manage your development environment. Your project will benefit from it in the long run. matt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060127/d6cdc3ae/attachment.html
Jeff Cohen
2006-Jan-27 15:17 UTC
[Rails] Re: Before I write this myself, is there already an easier w
Thanks everyone! I did rake --tasks but obviously can''t read. :-) Jeff -- Posted via http://www.ruby-forum.com/.
Ezra Zygmuntowicz
2006-Jan-27 17:42 UTC
[Rails] Before I write this myself, is there already an easier way?
On Jan 26, 2006, at 8:38 PM, matthew clark wrote:> > > rake load_fixtures > (you lose any data in your development database however) > > > You do, but if your fixtures are set up properly, so what? Why > would there be data in a development database that isn''t in the > fixtures? If there is, then the time spent tip-toeing around your > databasee is going to nickel and dime you until you''ve spent much > more time doing things the hard way than just taking an hour and > writing robust fixtures. > > Worse, you''ll be less inclined to make data structure changes > because of the extra work managing data, when a structure change > really is the best choice for the project. > > I recommend making the most out of tools like fixtures to manage > your development environment. Your project will benefit from it in > the long run. > > matt > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/railsWhat about using this: http://nubyonrails.com/articles/2005/12/27/dump-or-slurp-yaml- reference-data Cheers- -Ezra Zygmuntowicz Yakima Herald-Republic WebMaster http://yakimaherald.com 509-577-7732 ezra@yakima-herald.com