Sha256: a9b45434f5e98cd3be10991ad62f09f6d40508d78fc3c6ba59641240daa4a680
Contents?: true
Size: 574 Bytes
Versions: 20
Compression:
Stored size: 574 Bytes
Contents
class CreateSocialStreamLinkser < ActiveRecord::Migration def change create_table "links", :force => true do |t| t.integer "activity_object_id" t.datetime "created_at" t.datetime "updated_at" t.string "url" t.string "callback_url" t.string "title" t.string "image" t.text "description" t.integer "width", :default => 470 t.integer "height", :default => 353 end add_index "links", ["activity_object_id"], :name => "index_links_on_activity_object_id" end end
Version data entries
20 entries across 20 versions & 2 rubygems