Sha256: aa9e503972cbde8a2a87920b714909116a558301a5b0a6f6c148e54856e396f2

Contents?: true

Size: 244 Bytes

Versions: 1

Compression:

Stored size: 244 Bytes

Contents

class CreateNewsElement < ActiveRecord::Migration
  def self.up
    create_table :elements_news_elements do |t|
      t.references :news_page
      t.timestamps
    end
  end
  
  def self.down
    drop_table :elements_news_elements
  end 
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
humpyard-0.0.1 db/migrate/20100415213700_create_news_element.rb