public
Fork of drnic/ruby-on-rails-tmbundle
Description: Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]
Homepage: http://macromates.com
Clone URL: git://github.com/Infininight/ruby-on-rails-tmbundle.git
ruby-on-rails-tmbundle / Snippets / Migration Create Table (mct).plist
100644 19 lines (18 sloc) 0.498 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>content</key>
  <string>create_table :${1:table} do |t|
    $0
end</string>
  <key>name</key>
  <string>Create Table</string>
  <key>scope</key>
  <string>source.ruby.rails</string>
  <key>tabTrigger</key>
  <string>mtab</string>
  <key>uuid</key>
  <string>59A47C33-97C5-411D-ADBE-ABD2324BD130</string>
</dict>
</plist>