class CreateNews < ActiveRecord::Migration
  def self.up
    create_table :news do |t|
	t.column :title, :string
	t.column :description, :text
	t.column :image_url, :string
    end
  end

  def self.down
    drop_table :news
  end
end
