Class: BuzzFeedMigration

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'lib/generators/templates/migration.rb', line 12

def self.down
  drop_table :buzzs
end

.upObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/templates/migration.rb', line 2

def self.up
  create_table :buzzs do |t|
    t.string :title
    t.string :service_name, :default => 'website'
    t.string :service_item_id
    t.string :url
    t.timestamps
  end
end