yasnippet/extras/imported/rails-mode/Create columns helpers/Create decimal column.yasnippet
2009-11-19 17:09:01 +00:00

8 lines
305 B
Plaintext

# -*- mode: snippet -*-
# key: tcd
# contributor: Translated from TextMate Snippet
# name: Table column decimal
# condition: (and (yas/rails-migration-p) (or (yas/rails-in-create-table-p) (yas/rails-in-change-table-p)))
# --
t.decimal :${1:title}${2:${3:, :precision => ${4:10}}${5:, :scale => ${6:2}}}
$0