| OLD | NEW |
|---|---|
| (Empty) | |
| 1 class CreatePhotos < ActiveRecord::Migration | |
| 2 def self.up | |
| 3 create_table :photos do |t| | |
| 4 t.integer :news_item_id | |
| 5 t.string :image | |
| 6 t.string :description | |
| 7 t.integer :created_by_id | |
| 8 t.integer :updated_by_id | |
| 9 t.timestamps | |
| 10 end | |
| 11 end | |
| 12 | |
| 13 def self.down | |
| 14 drop_table :photos | |
| 15 end | |
| 16 end | |
| OLD | NEW |