Permalink
Please sign in to comment.
Showing
with
113 additions
and 13 deletions.
- +11 −1 app/assets/stylesheets/application.css
- +3 −3 app/controllers/home_controller.rb
- +13 −3 app/controllers/stories_controller.rb
- +45 −4 app/models/story.rb
- +3 −0 app/views/comments/_comment.html.erb
- +19 −0 app/views/stories/_listdetail.html.erb
- +7 −0 app/views/stories/edit.html.erb
- +3 −1 app/views/stories/show.html.erb
- +6 −0 db/migrate/20140408160306_add_story_merging.rb
- +3 −1 db/schema.rb
| @@ -0,0 +1,6 @@ | ||
| class AddStoryMerging < ActiveRecord::Migration | ||
| def change | ||
| add_column :stories, :merged_story_id, :integer | ||
| add_index "stories", [ "merged_story_id" ] | ||
| end | ||
| end |
0 comments on commit
73b8df5