# File lib/rq-2.3.1/qdb.rb, line 151
        def create_schema path
#--{{{
          tmp = "#{ path }.tmp"
          open(tmp,'w') do |f| 
            f.puts PRAGMAS 
            f.puts SCHEMA
          end
          FileUtils::mv tmp, path
#--}}}
        end