aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20110803223522_create_blog_structure.rb
Commit message (Collapse)AuthorAgeFilesLines
* Revert f906ef0 but maintain table name improvementsPhilip Arndt2013-07-141-33/+6
|
* Update db/migrate/20110803223522_create_blog_structure.rbCharles de Bueger2012-12-031-0/+1
| | | I noticed a bit of performance lag (thanks to new relic) on the blog index page (which loads all categories and comments at the same time). I see that the blog_comments table is lacking an index on the actual blog_post_id - meaning it will take a bit longer than we might like to find all the comments for a given blog.
* Squash migrations.Uģis Ozols2012-11-231-12/+39
| | | | | This also makes sure tags and taggings tables doesn't exist before trying to create them.
* Fixed drop_table for Category.Cory Deppen2012-03-241-1/+1
|
* Refactored everything (models, helpers) into proper namespace of ↵Philip Arndt2011-11-091-8/+8
| | | | Refinery::Blog. Requires refinery commit 25162b585b9c4023d39fd1a9796140bfa4ecb909
* Seed data should not be loaded mid migrationJamie Winsor2011-10-271-2/+0
| | | | Column information is not totally generated and seed will be done at end of migration run
* refactor engine testing scenarioJamie Winsor2011-08-031-0/+54
Engine is now tested standalone by leveraging a dummy rails app Enable Guard for speedy testing Move factories to the more standard location `spec/factories/*` Update README with a Testing section Rename migrations to contain datetimestamps for their version to fix migration order issues when migrating the dummy application