Sha256: ae424d4e5cde36b9cfde871341910ebc16102e8e9a0fe36a7167f39eb05abd49
Contents?: true
Size: 376 Bytes
Versions: 19
Compression:
Stored size: 376 Bytes
Contents
class CreateRedditorPages < ActiveRecord::Migration def change create_table(:redditor_pages) do |t| t.integer "pageable_id" t.string "pageable_type" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index :redditor_pages, :pageable_type add_index :redditor_pages, :pageable_id end end
Version data entries
19 entries across 19 versions & 1 rubygems