Skip to content

Instantly share code, notes, and snippets.

View roymax's full-sized avatar

Roy roymax

View GitHub Profile

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@roymax
roymax / notifications_all.rb
Created September 27, 2011 05:35 — forked from loss-zz/notifications_all.rb
notifications_all.rb
#-----数据库schema
#attachable 为虚拟属性,为兼容以后的私信notif之类的
create_table :notifications do |t|
t.belongs_to :user
t.references :attachable, :polymorphic => true
t.text :content
t.timestamps
end
add_index :notifications, :user_id
add_index :notifications, [:attachable_id, :attachable_type]