lib/fx/function.rb in fx-0.6.2 vs lib/fx/function.rb in fx-0.7.0
- old
+ new
@@ -15,10 +15,10 @@
name == other.name && definition == other.definition
end
def to_schema
<<-SCHEMA.indent(2)
-create_function :#{name}, sql_definition: <<-\SQL
+create_function :#{name}, sql_definition: <<-'SQL'
#{definition.indent(4).rstrip}
SQL
SCHEMA
end
end