Sha256: b9f6bf1df7e24d44525475e10130af6853eb347f686b4ff6b251f691d912a772
Contents?: true
Size: 352 Bytes
Versions: 19
Compression:
Stored size: 352 Bytes
Contents
class CreateRedditorTextBlocks < ActiveRecord::Migration def change create_table(:redditor_text_blocks) do |t| t.integer "page_id" t.text "body" t.integer "position" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index :redditor_text_blocks, :page_id end end
Version data entries
19 entries across 19 versions & 1 rubygems