Sha256: d0284e55704eba39da7efb10f22c4d5f65fed5c4ba6102650b5be1b14403fa6b
Contents?: true
Size: 343 Bytes
Versions: 8
Compression:
Stored size: 343 Bytes
Contents
DROP TABLE IF EXISTS "<%= ctx[:table] %>"; CREATE TABLE "<%= ctx[:table] %>" ( <% ctx[:columns].each_with_index do |item, index| %> "<%= Csv2Psql::Generator.sanitize_header(item[0]) %>" <%= item[1][:type].upcase %><% if !item[1][:null] %> NOT NULL<% end %><%= ', ' if index < ctx[:columns].length - 1%> <% end %> ) WITH ( OIDS=FALSE );
Version data entries
8 entries across 8 versions & 1 rubygems