From 76f2ff8337577bb8ffa2698769e96b0dc45be328 Mon Sep 17 00:00:00 2001 From: Iuri Fernandes Date: Sun, 28 Apr 2013 15:50:34 -0300 Subject: [PATCH] Remove empty column in mct snippet --- snippets/ruby.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/ruby.snippets b/snippets/ruby.snippets index 802b6ed..efb7075 100644 --- a/snippets/ruby.snippets +++ b/snippets/ruby.snippets @@ -894,7 +894,7 @@ snippet mnc t.${1:string} :${2:title}${3:, null: false}${4} snippet mct create_table :${1:table_name} do |t| - t.column :${2:name}, :${3:type} + ${2} end snippet migration class ${1:class_name} < ActiveRecord::Migration