Merge pull request #1106 from mrichardson-shelter/backup-create-fix-mysql-syntax-error
Fixing MySQL syntax error
This commit is contained in:
commit
30eee67726
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ namespace :gitlab do
|
||||||
print "- Dumping table #{tbl}... "
|
print "- Dumping table #{tbl}... "
|
||||||
count = 1
|
count = 1
|
||||||
File.open(File.join(backup_path_db, tbl + ".yml"), "w+") do |file|
|
File.open(File.join(backup_path_db, tbl + ".yml"), "w+") do |file|
|
||||||
ActiveRecord::Base.connection.select_all("SELECT * FROM #{tbl}").each do |line|
|
ActiveRecord::Base.connection.select_all("SELECT * FROM `#{tbl}`").each do |line|
|
||||||
line.delete_if{|k,v| v.blank?}
|
line.delete_if{|k,v| v.blank?}
|
||||||
output = {tbl + '_' + count.to_s => line}
|
output = {tbl + '_' + count.to_s => line}
|
||||||
file << output.to_yaml.gsub(/^---\n/,'') + "\n"
|
file << output.to_yaml.gsub(/^---\n/,'') + "\n"
|
||||||
|
|
Loading…
Reference in a new issue