poring_backup 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/lib/generators/poring_backup/install_generator.rb +13 -0
  5. data/lib/generators/poring_backup/templates/init_backup.rb +28 -0
  6. data/lib/poring_backup.rb +24 -0
  7. data/lib/poring_backup/callback.rb +29 -0
  8. data/lib/poring_backup/database.rb +44 -0
  9. data/lib/poring_backup/databases/postgresql.rb +81 -0
  10. data/lib/poring_backup/logger.rb +45 -0
  11. data/lib/poring_backup/railtie.rb +10 -0
  12. data/lib/poring_backup/setting.rb +64 -0
  13. data/lib/poring_backup/storage.rb +11 -0
  14. data/lib/poring_backup/storages/s3.rb +66 -0
  15. data/lib/poring_backup/version.rb +3 -0
  16. data/lib/tasks/poring_backup_tasks.task +14 -0
  17. data/test/dummy/README.rdoc +28 -0
  18. data/test/dummy/Rakefile +6 -0
  19. data/test/dummy/app/assets/javascripts/application.js +13 -0
  20. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  21. data/test/dummy/app/controllers/application_controller.rb +5 -0
  22. data/test/dummy/app/helpers/application_helper.rb +2 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/bin/bundle +3 -0
  25. data/test/dummy/bin/rails +4 -0
  26. data/test/dummy/bin/rake +4 -0
  27. data/test/dummy/bin/setup +29 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/application.rb +26 -0
  30. data/test/dummy/config/boot.rb +5 -0
  31. data/test/dummy/config/database.sample.yml +16 -0
  32. data/test/dummy/config/database.travis.yml +18 -0
  33. data/test/dummy/config/database.yml +16 -0
  34. data/test/dummy/config/environment.rb +5 -0
  35. data/test/dummy/config/environments/development.rb +41 -0
  36. data/test/dummy/config/environments/production.rb +79 -0
  37. data/test/dummy/config/environments/test.rb +42 -0
  38. data/test/dummy/config/initializers/assets.rb +11 -0
  39. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  40. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  42. data/test/dummy/config/initializers/inflections.rb +16 -0
  43. data/test/dummy/config/initializers/mime_types.rb +4 -0
  44. data/test/dummy/config/initializers/poring_backup.rb +23 -0
  45. data/test/dummy/config/initializers/session_store.rb +3 -0
  46. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +56 -0
  49. data/test/dummy/config/secrets.sample.yml +22 -0
  50. data/test/dummy/config/secrets.yml +22 -0
  51. data/test/dummy/db/schema.rb +19 -0
  52. data/test/dummy/log/backup_development.log +139 -0
  53. data/test/dummy/log/backup_test.log +27 -0
  54. data/test/dummy/log/development.log +3 -0
  55. data/test/dummy/log/test.log +1524 -0
  56. data/test/dummy/public/404.html +67 -0
  57. data/test/dummy/public/422.html +67 -0
  58. data/test/dummy/public/500.html +66 -0
  59. data/test/dummy/public/favicon.ico +0 -0
  60. data/test/dummy/spec/lib/database_spec.rb +46 -0
  61. data/test/dummy/spec/lib/databases/postgresql_spec.rb +85 -0
  62. data/test/dummy/spec/lib/setting_spec.rb +62 -0
  63. data/test/dummy/spec/lib/storage_spec.rb +15 -0
  64. data/test/dummy/spec/lib/storages/s3_spec.rb +43 -0
  65. data/test/dummy/spec/rails_helper.rb +69 -0
  66. data/test/dummy/spec/spec_helper.rb +87 -0
  67. data/test/poring_backup_test.rb +7 -0
  68. data/test/test_helper.rb +19 -0
  69. metadata +219 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,23 @@
1
+ PoringBackup.config do
2
+
3
+ database :PostgreSQL do
4
+ database 'onebox_core_development'
5
+ username 'Mac'
6
+ # password '1234'
7
+ end
8
+
9
+ database :PostgreSQL do
10
+ database 'onebox_bank_transfer_development'
11
+ username 'Mac'
12
+ # password '1234'
13
+ end
14
+
15
+ store_with :S3 do
16
+ access_key_id 'AKIAJOO6YDGD6K7MDIVA'
17
+ secret_access_key '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'
18
+ bucket 'oneboxcore-dev'
19
+ region 'ap-southeast-1'
20
+ path 'backups'
21
+ end
22
+
23
+ end
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 4459d6f08c8cda3f955197392612dd73e888830d77ce3bdd541457e2239b1fbb7d0fd30c5fe809fb03f62ce2b696b7a7b608590934d110135f63f56d854e2aaf
15
+
16
+ test:
17
+ secret_key_base: 96ee0aa59437e1f8736bd397e2c60b853e69adad08e0a250294c0ddd7b3edfcb39e193d10edd3fca669c1d3f01dd05d27aa23e194b7f18ca96f995053a90e281
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 4459d6f08c8cda3f955197392612dd73e888830d77ce3bdd541457e2239b1fbb7d0fd30c5fe809fb03f62ce2b696b7a7b608590934d110135f63f56d854e2aaf
15
+
16
+ test:
17
+ secret_key_base: 96ee0aa59437e1f8736bd397e2c60b853e69adad08e0a250294c0ddd7b3edfcb39e193d10edd3fca669c1d3f01dd05d27aa23e194b7f18ca96f995053a90e281
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,19 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ end
@@ -0,0 +1,139 @@
1
+ INFO PoringBackup::Log : PostgreSQL backup success
2
+ INFO PoringBackup::Log : PostgreSQL backup success
3
+ INFO PoringBackup::Log : PostgreSQL backup success
4
+ INFO PoringBackup::Log : PostgreSQL backup success
5
+ INFO PoringBackup::Log : PoringBackup Start...
6
+ INFO PoringBackup::Log : PostgreSQL backup processing
7
+ INFO PoringBackup::Log : PostgreSQL backup success
8
+ INFO PoringBackup::Log : PostgreSQL backup finished
9
+ INFO PoringBackup::Log : PostgreSQL backup processing
10
+ INFO PoringBackup::Log : PostgreSQL backup success
11
+ INFO PoringBackup::Log : PostgreSQL backup finished
12
+ INFO PoringBackup::Log : S3 processing
13
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.27.35/onebox_core_development.pgsql
14
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.27.35/onebox_bank_transfer_development.pgsql
15
+ INFO PoringBackup::Log : S3 finished
16
+ INFO PoringBackup::Log : PoringBackup Done
17
+ INFO PoringBackup::Log : PoringBackup Start...
18
+ INFO PoringBackup::Log : --------- Backup ----------
19
+ INFO PoringBackup::Log : ---------------------------
20
+ INFO PoringBackup::Log : PostgreSQL backup processing
21
+ INFO PoringBackup::Log : PostgreSQL backup success
22
+ INFO PoringBackup::Log : PostgreSQL backup finished
23
+ INFO PoringBackup::Log : PostgreSQL backup processing
24
+ INFO PoringBackup::Log : PostgreSQL backup success
25
+ INFO PoringBackup::Log : PostgreSQL backup finished
26
+ INFO PoringBackup::Log : ----------- Store ---------
27
+ INFO PoringBackup::Log : ---------------------------
28
+ INFO PoringBackup::Log : S3 processing
29
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.32.38/onebox_core_development.pgsql
30
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.32.38/onebox_bank_transfer_development.pgsql
31
+ INFO PoringBackup::Log : S3 finished
32
+ DEBUG PoringBackup::Log : clear tmp directory
33
+ INFO PoringBackup::Log : PoringBackup Done
34
+ INFO PoringBackup::Log : PoringBackup Start...
35
+ INFO PoringBackup::Log : --------- Backup ----------
36
+ INFO PoringBackup::Log : ---------------------------
37
+ INFO PoringBackup::Log : PostgreSQL backup processing
38
+ INFO PoringBackup::Log : success
39
+ INFO PoringBackup::Log : finished
40
+ INFO PoringBackup::Log : PostgreSQL backup processing
41
+ INFO PoringBackup::Log : success
42
+ INFO PoringBackup::Log : finished
43
+ INFO PoringBackup::Log : ----------- Store ---------
44
+ INFO PoringBackup::Log : ---------------------------
45
+ INFO PoringBackup::Log : S3 processing
46
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.34.17/onebox_core_development.pgsql
47
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.34.17/onebox_bank_transfer_development.pgsql
48
+ INFO PoringBackup::Log : S3 finished
49
+ DEBUG PoringBackup::Log : clear tmp directory
50
+ INFO PoringBackup::Log : PoringBackup Done
51
+ INFO PoringBackup::Log : PoringBackup Start...
52
+ INFO PoringBackup::Log : --------- Backup ----------
53
+ INFO PoringBackup::Log : ---------------------------
54
+ INFO PoringBackup::Log : PostgreSQL backup processing
55
+ INFO PoringBackup::Log : success
56
+ INFO PoringBackup::Log : finished
57
+ INFO PoringBackup::Log : PostgreSQL backup processing
58
+ INFO PoringBackup::Log : success
59
+ INFO PoringBackup::Log : finished
60
+ INFO PoringBackup::Log : ----------- Store ---------
61
+ INFO PoringBackup::Log : ---------------------------
62
+ INFO PoringBackup::Log : S3 processing
63
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.35.13/onebox_core_development.pgsql
64
+ INFO PoringBackup::Log : S3 uploaded: backups/db_backups/2015.05.22.14.35.13/onebox_bank_transfer_development.pgsql
65
+ INFO PoringBackup::Log : S3 finished
66
+ DEBUG PoringBackup::Log : clear tmp directory
67
+ INFO PoringBackup::Log : PoringBackup Done
68
+ INFO PoringBackup::Log : PoringBackup Start...
69
+ INFO PoringBackup::Log : --------- Backup ----------
70
+ INFO PoringBackup::Log : ---------------------------
71
+ INFO PoringBackup::Log : PostgreSQL backup processing
72
+ INFO PoringBackup::Log : success
73
+ INFO PoringBackup::Log : {' '*18}finished
74
+ INFO PoringBackup::Log : PostgreSQL backup processing
75
+ INFO PoringBackup::Log : success
76
+ INFO PoringBackup::Log : {' '*18}finished
77
+ INFO PoringBackup::Log : ----------- Store ---------
78
+ INFO PoringBackup::Log : ---------------------------
79
+ INFO PoringBackup::Log : S3 processing
80
+ INFO PoringBackup::Log : {' '*3}uploaded: backups/db_backups/2015.05.22.14.37.47/onebox_core_development.pgsql
81
+ INFO PoringBackup::Log : {' '*3}uploaded: backups/db_backups/2015.05.22.14.37.47/onebox_bank_transfer_development.pgsql
82
+ INFO PoringBackup::Log : {' '*3}finished
83
+ DEBUG PoringBackup::Log : clear tmp directory
84
+ INFO PoringBackup::Log : PoringBackup Done
85
+ INFO PoringBackup::Log : PoringBackup Start...
86
+ INFO PoringBackup::Log : --------- Backup ----------
87
+ INFO PoringBackup::Log : ---------------------------
88
+ INFO PoringBackup::Log : PostgreSQL backup processing
89
+ INFO PoringBackup::Log : success
90
+ INFO PoringBackup::Log : {' '*18}finished
91
+ INFO PoringBackup::Log : PostgreSQL backup processing
92
+ INFO PoringBackup::Log : success
93
+ INFO PoringBackup::Log : {' '*18}finished
94
+ INFO PoringBackup::Log : ----------- Store ---------
95
+ INFO PoringBackup::Log : ---------------------------
96
+ INFO PoringBackup::Log : S3 processing
97
+ INFO PoringBackup::Log : uploaded: backups/db_backups/2015.05.22.14.38.03/onebox_core_development.pgsql
98
+ INFO PoringBackup::Log : uploaded: backups/db_backups/2015.05.22.14.38.03/onebox_bank_transfer_development.pgsql
99
+ INFO PoringBackup::Log : finished
100
+ DEBUG PoringBackup::Log : clear tmp directory
101
+ INFO PoringBackup::Log : PoringBackup Done
102
+ INFO PoringBackup::Log : PoringBackup Start...
103
+ INFO PoringBackup::Log : --------- Backup ----------
104
+ INFO PoringBackup::Log : ---------------------------
105
+ INFO PoringBackup::Log : PostgreSQL backup processing
106
+ INFO PoringBackup::Log : success
107
+ INFO PoringBackup::Log : finished
108
+ INFO PoringBackup::Log : PostgreSQL backup processing
109
+ INFO PoringBackup::Log : success
110
+ INFO PoringBackup::Log : finished
111
+ INFO PoringBackup::Log : ----------- Store ---------
112
+ INFO PoringBackup::Log : ---------------------------
113
+ INFO PoringBackup::Log : S3 processing
114
+ INFO PoringBackup::Log : uploaded: backups/db_backups/2015.05.22.14.38.41/onebox_core_development.pgsql
115
+ INFO PoringBackup::Log : uploaded: backups/db_backups/2015.05.22.14.38.41/onebox_bank_transfer_development.pgsql
116
+ INFO PoringBackup::Log : finished
117
+ DEBUG PoringBackup::Log : clear tmp directory
118
+ INFO PoringBackup::Log : PoringBackup Done
119
+ INFO PoringBackup::Log : PoringBackup Start...
120
+ INFO PoringBackup::Log : PoringBackup Start...
121
+ INFO PoringBackup::Log : --------- Backup ----------
122
+ INFO PoringBackup::Log : PostgreSQL backup processing
123
+ INFO PoringBackup::Log : success
124
+ INFO PoringBackup::Log : finished
125
+ INFO PoringBackup::Log : PostgreSQL backup processing
126
+ INFO PoringBackup::Log : success
127
+ INFO PoringBackup::Log : finished
128
+ INFO PoringBackup::Log : ----------- Store ---------
129
+ INFO PoringBackup::Log : S3 processing
130
+ INFO PoringBackup::Log : uploaded: backups/db_backups/2015.05.22.15.29.16/onebox_core_development.pgsql
131
+ INFO PoringBackup::Log : uploaded: backups/db_backups/2015.05.22.15.29.16/onebox_bank_transfer_development.pgsql
132
+ INFO PoringBackup::Log : finished
133
+ DEBUG PoringBackup::Log : clear tmp directory
134
+ INFO PoringBackup::Log : PoringBackup Done
135
+ INFO PoringBackup::Log : PoringBackup Start...
136
+ INFO PoringBackup::Log : --------- Backup ----------
137
+ INFO PoringBackup::Log : ----------- Store ---------
138
+ DEBUG PoringBackup::Log : clear tmp directory
139
+ INFO PoringBackup::Log : PoringBackup Done
@@ -0,0 +1,27 @@
1
+ INFO PoringBackup::Log : ----- before processing...
2
+ INFO PoringBackup::Log : ----- before processing...
3
+ INFO PoringBackup::Log : ----- before processing...
4
+ INFO PoringBackup::Log : ----- before processing...
5
+ INFO PoringBackup::Log : ----- before processing...
6
+ INFO PoringBackup::Log : ----- before processing...
7
+ INFO PoringBackup::Log : ----- before processing...
8
+ INFO PoringBackup::Log : ----- before processing...
9
+ INFO PoringBackup::Log : ----- before processing...
10
+ INFO PoringBackup::Log : ----- before processing...
11
+ INFO PoringBackup::Log : ----- after processing...
12
+ INFO PoringBackup::Log : ----- before processing...
13
+ INFO PoringBackup::Log : ----- after processing...
14
+ INFO PoringBackup::Log : ----- before processing...
15
+ DEBUG PoringBackup::Log : clear tmp directory
16
+ DEBUG PoringBackup::Log : clear tmp directory
17
+ DEBUG PoringBackup::Log : clear tmp directory
18
+ DEBUG PoringBackup::Log : clear tmp directory
19
+ INFO PoringBackup::Log : ----- before processing...
20
+ INFO PoringBackup::Log : ----- before processing...
21
+ INFO PoringBackup::Log : ----- before processing...
22
+ INFO PoringBackup::Log : ----- before processing...
23
+ INFO PoringBackup::Log : ----- before processing...
24
+ INFO PoringBackup::Log : test before backup
25
+ DEBUG PoringBackup::Log : clear tmp directory
26
+ DEBUG PoringBackup::Log : clear tmp directory
27
+ DEBUG PoringBackup::Log : clear tmp directory
@@ -0,0 +1,3 @@
1
+  (28.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,1524 @@
1
+  (121.2ms) DROP DATABASE IF EXISTS "poring_backup_test"
2
+  (233.6ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
3
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
5
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.3ms) SELECT version FROM "schema_migrations"
7
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
8
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
+  (0.3ms) BEGIN
10
+  (0.3ms) ROLLBACK
11
+  (0.1ms) BEGIN
12
+  (0.2ms) ROLLBACK
13
+  (0.1ms) BEGIN
14
+  (0.2ms) ROLLBACK
15
+  (0.1ms) BEGIN
16
+  (0.2ms) ROLLBACK
17
+  (0.1ms) BEGIN
18
+  (0.1ms) ROLLBACK
19
+  (0.1ms) BEGIN
20
+  (0.1ms) ROLLBACK
21
+  (0.1ms) BEGIN
22
+  (0.2ms) ROLLBACK
23
+  (0.1ms) BEGIN
24
+  (0.1ms) ROLLBACK
25
+  (0.1ms) BEGIN
26
+  (0.2ms) ROLLBACK
27
+  (0.1ms) BEGIN
28
+  (0.1ms) ROLLBACK
29
+  (0.1ms) BEGIN
30
+  (0.1ms) ROLLBACK
31
+  (0.1ms) BEGIN
32
+  (0.1ms) ROLLBACK
33
+  (0.1ms) BEGIN
34
+  (0.1ms) ROLLBACK
35
+  (0.1ms) BEGIN
36
+  (0.1ms) ROLLBACK
37
+  (0.1ms) BEGIN
38
+  (0.1ms) ROLLBACK
39
+  (0.1ms) BEGIN
40
+  (0.2ms) ROLLBACK
41
+  (0.1ms) BEGIN
42
+  (0.1ms) ROLLBACK
43
+  (0.1ms) BEGIN
44
+  (0.1ms) ROLLBACK
45
+  (0.1ms) BEGIN
46
+  (0.1ms) ROLLBACK
47
+  (0.1ms) BEGIN
48
+  (0.2ms) ROLLBACK
49
+  (0.1ms) BEGIN
50
+  (0.1ms) ROLLBACK
51
+  (0.1ms) BEGIN
52
+  (0.2ms) ROLLBACK
53
+  (0.1ms) BEGIN
54
+  (0.2ms) ROLLBACK
55
+  (0.1ms) BEGIN
56
+  (0.2ms) ROLLBACK
57
+  (0.1ms) BEGIN
58
+  (0.2ms) ROLLBACK
59
+  (0.1ms) BEGIN
60
+  (0.2ms) ROLLBACK
61
+  (0.1ms) BEGIN
62
+  (0.2ms) ROLLBACK
63
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
64
+  (113.4ms) DROP DATABASE IF EXISTS "poring_backup_test"
65
+  (242.5ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
66
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
67
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
68
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
69
+  (0.3ms) SELECT version FROM "schema_migrations"
70
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
71
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
72
+  (0.2ms) BEGIN
73
+  (0.4ms) ROLLBACK
74
+  (0.1ms) BEGIN
75
+  (0.3ms) ROLLBACK
76
+  (0.2ms) BEGIN
77
+  (0.2ms) ROLLBACK
78
+  (0.1ms) BEGIN
79
+  (0.2ms) ROLLBACK
80
+  (0.1ms) BEGIN
81
+  (0.2ms) ROLLBACK
82
+  (0.2ms) BEGIN
83
+  (0.2ms) ROLLBACK
84
+  (0.2ms) BEGIN
85
+  (0.2ms) ROLLBACK
86
+  (0.1ms) BEGIN
87
+  (0.2ms) ROLLBACK
88
+  (0.1ms) BEGIN
89
+  (0.2ms) ROLLBACK
90
+  (0.2ms) BEGIN
91
+  (0.1ms) ROLLBACK
92
+  (0.1ms) BEGIN
93
+  (0.1ms) ROLLBACK
94
+  (0.1ms) BEGIN
95
+  (0.1ms) ROLLBACK
96
+  (0.1ms) BEGIN
97
+  (0.1ms) ROLLBACK
98
+  (0.1ms) BEGIN
99
+  (0.1ms) ROLLBACK
100
+  (0.1ms) BEGIN
101
+  (0.1ms) ROLLBACK
102
+  (0.1ms) BEGIN
103
+  (0.1ms) ROLLBACK
104
+  (0.1ms) BEGIN
105
+  (0.1ms) ROLLBACK
106
+  (0.1ms) BEGIN
107
+  (0.1ms) ROLLBACK
108
+  (0.1ms) BEGIN
109
+  (0.1ms) ROLLBACK
110
+  (0.1ms) BEGIN
111
+  (0.1ms) ROLLBACK
112
+  (0.1ms) BEGIN
113
+  (0.2ms) ROLLBACK
114
+  (0.1ms) BEGIN
115
+  (0.1ms) ROLLBACK
116
+  (0.1ms) BEGIN
117
+  (0.2ms) ROLLBACK
118
+  (0.1ms) BEGIN
119
+  (0.2ms) ROLLBACK
120
+  (0.2ms) BEGIN
121
+  (0.2ms) ROLLBACK
122
+  (0.1ms) BEGIN
123
+  (0.2ms) ROLLBACK
124
+  (0.1ms) BEGIN
125
+  (0.2ms) ROLLBACK
126
+  (0.1ms) BEGIN
127
+  (0.2ms) ROLLBACK
128
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
129
+  (114.7ms) DROP DATABASE IF EXISTS "poring_backup_test"
130
+  (337.8ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
131
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
132
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
133
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
134
+  (0.3ms) SELECT version FROM "schema_migrations"
135
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
136
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
137
+  (0.2ms) BEGIN
138
+  (0.3ms) ROLLBACK
139
+  (0.2ms) BEGIN
140
+  (0.2ms) ROLLBACK
141
+  (0.1ms) BEGIN
142
+  (0.2ms) ROLLBACK
143
+  (0.1ms) BEGIN
144
+  (0.2ms) ROLLBACK
145
+  (0.1ms) BEGIN
146
+  (0.2ms) ROLLBACK
147
+  (0.1ms) BEGIN
148
+  (0.2ms) ROLLBACK
149
+  (0.1ms) BEGIN
150
+  (0.2ms) ROLLBACK
151
+  (0.1ms) BEGIN
152
+  (0.2ms) ROLLBACK
153
+  (0.1ms) BEGIN
154
+  (0.2ms) ROLLBACK
155
+  (0.1ms) BEGIN
156
+  (0.1ms) ROLLBACK
157
+  (0.1ms) BEGIN
158
+  (0.1ms) ROLLBACK
159
+  (0.1ms) BEGIN
160
+  (0.1ms) ROLLBACK
161
+  (0.1ms) BEGIN
162
+  (0.1ms) ROLLBACK
163
+  (0.2ms) BEGIN
164
+  (0.1ms) ROLLBACK
165
+  (0.1ms) BEGIN
166
+  (0.1ms) ROLLBACK
167
+  (0.1ms) BEGIN
168
+  (0.2ms) ROLLBACK
169
+  (0.1ms) BEGIN
170
+  (0.1ms) ROLLBACK
171
+  (0.1ms) BEGIN
172
+  (0.1ms) ROLLBACK
173
+  (0.1ms) BEGIN
174
+  (0.1ms) ROLLBACK
175
+  (0.1ms) BEGIN
176
+  (0.1ms) ROLLBACK
177
+  (0.1ms) BEGIN
178
+  (0.2ms) ROLLBACK
179
+  (0.1ms) BEGIN
180
+  (0.1ms) ROLLBACK
181
+  (0.1ms) BEGIN
182
+  (0.2ms) ROLLBACK
183
+  (0.1ms) BEGIN
184
+  (0.2ms) ROLLBACK
185
+  (0.1ms) BEGIN
186
+  (0.2ms) ROLLBACK
187
+  (0.1ms) BEGIN
188
+  (0.2ms) ROLLBACK
189
+  (0.1ms) BEGIN
190
+  (0.2ms) ROLLBACK
191
+  (0.1ms) BEGIN
192
+  (0.2ms) ROLLBACK
193
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
194
+  (115.7ms) DROP DATABASE IF EXISTS "poring_backup_test"
195
+  (280.2ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
196
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
197
+  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
198
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
+  (0.3ms) SELECT version FROM "schema_migrations"
200
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
201
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
202
+  (0.3ms) BEGIN
203
+  (0.3ms) ROLLBACK
204
+  (0.1ms) BEGIN
205
+  (0.2ms) ROLLBACK
206
+  (0.1ms) BEGIN
207
+  (0.2ms) ROLLBACK
208
+  (0.1ms) BEGIN
209
+  (0.2ms) ROLLBACK
210
+  (0.1ms) BEGIN
211
+  (0.1ms) ROLLBACK
212
+  (0.1ms) BEGIN
213
+  (0.2ms) ROLLBACK
214
+  (0.1ms) BEGIN
215
+  (0.2ms) ROLLBACK
216
+  (0.1ms) BEGIN
217
+  (0.2ms) ROLLBACK
218
+  (0.1ms) BEGIN
219
+  (0.2ms) ROLLBACK
220
+  (0.1ms) BEGIN
221
+  (0.1ms) ROLLBACK
222
+  (0.1ms) BEGIN
223
+  (0.1ms) ROLLBACK
224
+  (0.1ms) BEGIN
225
+  (0.1ms) ROLLBACK
226
+  (0.1ms) BEGIN
227
+  (0.1ms) ROLLBACK
228
+  (0.1ms) BEGIN
229
+  (0.1ms) ROLLBACK
230
+  (0.1ms) BEGIN
231
+  (0.1ms) ROLLBACK
232
+  (0.1ms) BEGIN
233
+  (0.2ms) ROLLBACK
234
+  (0.1ms) BEGIN
235
+  (0.1ms) ROLLBACK
236
+  (0.1ms) BEGIN
237
+  (0.1ms) ROLLBACK
238
+  (0.1ms) BEGIN
239
+  (0.1ms) ROLLBACK
240
+  (0.1ms) BEGIN
241
+  (0.1ms) ROLLBACK
242
+  (0.1ms) BEGIN
243
+  (0.2ms) ROLLBACK
244
+  (0.1ms) BEGIN
245
+  (0.1ms) ROLLBACK
246
+  (0.1ms) BEGIN
247
+  (0.2ms) ROLLBACK
248
+  (0.1ms) BEGIN
249
+  (0.2ms) ROLLBACK
250
+  (0.2ms) BEGIN
251
+  (0.2ms) ROLLBACK
252
+  (0.1ms) BEGIN
253
+  (0.2ms) ROLLBACK
254
+  (0.1ms) BEGIN
255
+  (0.2ms) ROLLBACK
256
+  (0.1ms) BEGIN
257
+  (0.2ms) ROLLBACK
258
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
259
+  (114.2ms) DROP DATABASE IF EXISTS "poring_backup_test"
260
+  (246.3ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
261
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
262
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
263
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
264
+  (0.4ms) SELECT version FROM "schema_migrations"
265
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
266
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
267
+  (0.3ms) BEGIN
268
+  (0.2ms) ROLLBACK
269
+  (0.1ms) BEGIN
270
+  (0.2ms) ROLLBACK
271
+  (0.1ms) BEGIN
272
+  (0.2ms) ROLLBACK
273
+  (0.1ms) BEGIN
274
+  (0.2ms) ROLLBACK
275
+  (0.2ms) BEGIN
276
+  (0.2ms) ROLLBACK
277
+  (0.1ms) BEGIN
278
+  (0.2ms) ROLLBACK
279
+  (0.1ms) BEGIN
280
+  (0.2ms) ROLLBACK
281
+  (0.1ms) BEGIN
282
+  (0.1ms) ROLLBACK
283
+  (0.1ms) BEGIN
284
+  (0.1ms) ROLLBACK
285
+  (0.1ms) BEGIN
286
+  (0.1ms) ROLLBACK
287
+  (0.1ms) BEGIN
288
+  (0.1ms) ROLLBACK
289
+  (0.1ms) BEGIN
290
+  (0.1ms) ROLLBACK
291
+  (0.1ms) BEGIN
292
+  (0.1ms) ROLLBACK
293
+  (0.1ms) BEGIN
294
+  (0.1ms) ROLLBACK
295
+  (0.1ms) BEGIN
296
+  (0.1ms) ROLLBACK
297
+  (0.1ms) BEGIN
298
+  (0.1ms) ROLLBACK
299
+  (0.1ms) BEGIN
300
+  (0.1ms) ROLLBACK
301
+  (0.1ms) BEGIN
302
+  (0.1ms) ROLLBACK
303
+  (0.1ms) BEGIN
304
+  (0.1ms) ROLLBACK
305
+  (0.1ms) BEGIN
306
+  (0.1ms) ROLLBACK
307
+  (0.1ms) BEGIN
308
+  (0.2ms) ROLLBACK
309
+  (0.1ms) BEGIN
310
+  (0.1ms) ROLLBACK
311
+  (0.1ms) BEGIN
312
+  (0.2ms) ROLLBACK
313
+  (0.1ms) BEGIN
314
+  (0.1ms) ROLLBACK
315
+  (0.2ms) BEGIN
316
+  (0.2ms) ROLLBACK
317
+  (0.1ms) BEGIN
318
+  (0.2ms) ROLLBACK
319
+  (0.1ms) BEGIN
320
+  (0.2ms) ROLLBACK
321
+  (0.1ms) BEGIN
322
+  (0.2ms) ROLLBACK
323
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
324
+  (114.1ms) DROP DATABASE IF EXISTS "poring_backup_test"
325
+  (317.0ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
326
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
327
+  (4.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
328
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
329
+  (0.4ms) SELECT version FROM "schema_migrations"
330
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
331
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
332
+  (0.3ms) BEGIN
333
+  (0.4ms) ROLLBACK
334
+  (0.2ms) BEGIN
335
+  (0.3ms) ROLLBACK
336
+  (0.2ms) BEGIN
337
+  (0.2ms) ROLLBACK
338
+  (0.1ms) BEGIN
339
+  (0.2ms) ROLLBACK
340
+  (0.1ms) BEGIN
341
+  (0.2ms) ROLLBACK
342
+  (0.1ms) BEGIN
343
+  (0.2ms) ROLLBACK
344
+  (0.1ms) BEGIN
345
+  (0.2ms) ROLLBACK
346
+  (0.1ms) BEGIN
347
+  (0.2ms) ROLLBACK
348
+  (0.2ms) BEGIN
349
+  (0.2ms) ROLLBACK
350
+  (0.1ms) BEGIN
351
+  (0.1ms) ROLLBACK
352
+  (0.1ms) BEGIN
353
+  (0.1ms) ROLLBACK
354
+  (0.1ms) BEGIN
355
+  (0.1ms) ROLLBACK
356
+  (0.1ms) BEGIN
357
+  (0.1ms) ROLLBACK
358
+  (0.1ms) BEGIN
359
+  (0.1ms) ROLLBACK
360
+  (0.1ms) BEGIN
361
+  (0.1ms) ROLLBACK
362
+  (0.1ms) BEGIN
363
+  (0.2ms) ROLLBACK
364
+  (0.1ms) BEGIN
365
+  (0.1ms) ROLLBACK
366
+  (0.1ms) BEGIN
367
+  (0.1ms) ROLLBACK
368
+  (0.1ms) BEGIN
369
+  (0.1ms) ROLLBACK
370
+  (0.1ms) BEGIN
371
+  (0.1ms) ROLLBACK
372
+  (0.1ms) BEGIN
373
+  (0.2ms) ROLLBACK
374
+  (0.2ms) BEGIN
375
+  (0.1ms) ROLLBACK
376
+  (0.1ms) BEGIN
377
+  (0.2ms) ROLLBACK
378
+  (0.1ms) BEGIN
379
+  (0.2ms) ROLLBACK
380
+  (0.1ms) BEGIN
381
+  (0.2ms) ROLLBACK
382
+  (0.1ms) BEGIN
383
+  (0.2ms) ROLLBACK
384
+  (0.1ms) BEGIN
385
+  (0.2ms) ROLLBACK
386
+  (0.1ms) BEGIN
387
+  (0.2ms) ROLLBACK
388
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
389
+  (114.1ms) DROP DATABASE IF EXISTS "poring_backup_test"
390
+  (241.4ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
391
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
392
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
393
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
394
+  (0.3ms) SELECT version FROM "schema_migrations"
395
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
396
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
397
+  (0.2ms) BEGIN
398
+  (0.4ms) ROLLBACK
399
+  (0.1ms) BEGIN
400
+  (0.3ms) ROLLBACK
401
+  (0.3ms) BEGIN
402
+  (0.3ms) ROLLBACK
403
+  (0.1ms) BEGIN
404
+  (0.2ms) ROLLBACK
405
+  (0.1ms) BEGIN
406
+  (0.3ms) ROLLBACK
407
+  (0.1ms) BEGIN
408
+  (0.2ms) ROLLBACK
409
+  (0.1ms) BEGIN
410
+  (0.2ms) ROLLBACK
411
+  (0.1ms) BEGIN
412
+  (0.2ms) ROLLBACK
413
+  (0.2ms) BEGIN
414
+  (0.2ms) ROLLBACK
415
+  (0.1ms) BEGIN
416
+  (0.1ms) ROLLBACK
417
+  (0.1ms) BEGIN
418
+  (0.1ms) ROLLBACK
419
+  (0.1ms) BEGIN
420
+  (0.1ms) ROLLBACK
421
+  (0.1ms) BEGIN
422
+  (0.1ms) ROLLBACK
423
+  (0.1ms) BEGIN
424
+  (0.1ms) ROLLBACK
425
+  (0.1ms) BEGIN
426
+  (0.1ms) ROLLBACK
427
+  (0.1ms) BEGIN
428
+  (0.2ms) ROLLBACK
429
+  (0.1ms) BEGIN
430
+  (0.1ms) ROLLBACK
431
+  (0.1ms) BEGIN
432
+  (0.1ms) ROLLBACK
433
+  (0.1ms) BEGIN
434
+  (0.1ms) ROLLBACK
435
+  (0.1ms) BEGIN
436
+  (0.1ms) ROLLBACK
437
+  (0.1ms) BEGIN
438
+  (0.2ms) ROLLBACK
439
+  (0.1ms) BEGIN
440
+  (0.1ms) ROLLBACK
441
+  (0.1ms) BEGIN
442
+  (0.2ms) ROLLBACK
443
+  (0.1ms) BEGIN
444
+  (0.2ms) ROLLBACK
445
+  (0.1ms) BEGIN
446
+  (0.2ms) ROLLBACK
447
+  (0.1ms) BEGIN
448
+  (0.2ms) ROLLBACK
449
+  (0.2ms) BEGIN
450
+  (0.2ms) ROLLBACK
451
+  (0.1ms) BEGIN
452
+  (0.2ms) ROLLBACK
453
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
+  (114.5ms) DROP DATABASE IF EXISTS "poring_backup_test"
455
+  (242.7ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
456
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
457
+  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
458
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
459
+  (0.4ms) SELECT version FROM "schema_migrations"
460
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
461
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
462
+  (0.2ms) BEGIN
463
+  (0.2ms) ROLLBACK
464
+  (0.2ms) BEGIN
465
+  (0.2ms) ROLLBACK
466
+  (0.1ms) BEGIN
467
+  (0.3ms) ROLLBACK
468
+  (0.1ms) BEGIN
469
+  (0.4ms) ROLLBACK
470
+  (0.1ms) BEGIN
471
+  (0.2ms) ROLLBACK
472
+  (0.1ms) BEGIN
473
+  (0.2ms) ROLLBACK
474
+  (0.1ms) BEGIN
475
+  (0.2ms) ROLLBACK
476
+  (0.1ms) BEGIN
477
+  (0.3ms) ROLLBACK
478
+  (0.1ms) BEGIN
479
+  (0.2ms) ROLLBACK
480
+  (0.1ms) BEGIN
481
+  (0.1ms) ROLLBACK
482
+  (0.1ms) BEGIN
483
+  (0.1ms) ROLLBACK
484
+  (0.1ms) BEGIN
485
+  (0.1ms) ROLLBACK
486
+  (0.1ms) BEGIN
487
+  (0.2ms) ROLLBACK
488
+  (0.1ms) BEGIN
489
+  (0.1ms) ROLLBACK
490
+  (0.1ms) BEGIN
491
+  (0.1ms) ROLLBACK
492
+  (0.1ms) BEGIN
493
+  (0.2ms) ROLLBACK
494
+  (0.1ms) BEGIN
495
+  (0.1ms) ROLLBACK
496
+  (0.1ms) BEGIN
497
+  (0.1ms) ROLLBACK
498
+  (0.1ms) BEGIN
499
+  (0.1ms) ROLLBACK
500
+  (0.1ms) BEGIN
501
+  (0.1ms) ROLLBACK
502
+  (0.1ms) BEGIN
503
+  (0.2ms) ROLLBACK
504
+  (0.1ms) BEGIN
505
+  (0.1ms) ROLLBACK
506
+  (0.1ms) BEGIN
507
+  (0.2ms) ROLLBACK
508
+  (0.1ms) BEGIN
509
+  (0.2ms) ROLLBACK
510
+  (0.1ms) BEGIN
511
+  (0.2ms) ROLLBACK
512
+  (0.1ms) BEGIN
513
+  (0.2ms) ROLLBACK
514
+  (0.1ms) BEGIN
515
+  (0.2ms) ROLLBACK
516
+  (0.1ms) BEGIN
517
+  (0.2ms) ROLLBACK
518
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
519
+  (114.6ms) DROP DATABASE IF EXISTS "poring_backup_test"
520
+  (231.9ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
521
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
522
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
523
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
524
+  (0.3ms) SELECT version FROM "schema_migrations"
525
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
526
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
527
+  (0.2ms) BEGIN
528
+  (0.4ms) ROLLBACK
529
+  (0.2ms) BEGIN
530
+  (0.3ms) ROLLBACK
531
+  (0.1ms) BEGIN
532
+  (0.2ms) ROLLBACK
533
+  (0.2ms) BEGIN
534
+  (0.2ms) ROLLBACK
535
+  (0.1ms) BEGIN
536
+  (0.2ms) ROLLBACK
537
+  (0.1ms) BEGIN
538
+  (0.2ms) ROLLBACK
539
+  (0.1ms) BEGIN
540
+  (0.2ms) ROLLBACK
541
+  (0.1ms) BEGIN
542
+  (0.2ms) ROLLBACK
543
+  (0.1ms) BEGIN
544
+  (0.2ms) ROLLBACK
545
+  (0.1ms) BEGIN
546
+  (0.1ms) ROLLBACK
547
+  (0.1ms) BEGIN
548
+  (0.1ms) ROLLBACK
549
+  (0.1ms) BEGIN
550
+  (0.1ms) ROLLBACK
551
+  (0.1ms) BEGIN
552
+  (0.1ms) ROLLBACK
553
+  (0.1ms) BEGIN
554
+  (0.1ms) ROLLBACK
555
+  (0.1ms) BEGIN
556
+  (0.1ms) ROLLBACK
557
+  (0.1ms) BEGIN
558
+  (0.2ms) ROLLBACK
559
+  (0.1ms) BEGIN
560
+  (0.1ms) ROLLBACK
561
+  (0.1ms) BEGIN
562
+  (0.1ms) ROLLBACK
563
+  (0.1ms) BEGIN
564
+  (0.1ms) ROLLBACK
565
+  (0.1ms) BEGIN
566
+  (0.1ms) ROLLBACK
567
+  (0.1ms) BEGIN
568
+  (0.2ms) ROLLBACK
569
+  (0.2ms) BEGIN
570
+  (0.1ms) ROLLBACK
571
+  (0.1ms) BEGIN
572
+  (0.2ms) ROLLBACK
573
+  (0.1ms) BEGIN
574
+  (0.2ms) ROLLBACK
575
+  (0.1ms) BEGIN
576
+  (0.2ms) ROLLBACK
577
+  (0.1ms) BEGIN
578
+  (0.2ms) ROLLBACK
579
+  (0.1ms) BEGIN
580
+  (0.2ms) ROLLBACK
581
+  (0.1ms) BEGIN
582
+  (0.2ms) ROLLBACK
583
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
584
+  (114.8ms) DROP DATABASE IF EXISTS "poring_backup_test"
585
+  (239.4ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
586
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
587
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
588
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
589
+  (0.3ms) SELECT version FROM "schema_migrations"
590
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
591
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
592
+  (0.2ms) BEGIN
593
+  (0.4ms) ROLLBACK
594
+  (0.2ms) BEGIN
595
+  (0.2ms) ROLLBACK
596
+  (0.2ms) BEGIN
597
+  (0.2ms) ROLLBACK
598
+  (0.1ms) BEGIN
599
+  (0.2ms) ROLLBACK
600
+  (0.2ms) BEGIN
601
+  (0.2ms) ROLLBACK
602
+  (0.1ms) BEGIN
603
+  (0.2ms) ROLLBACK
604
+  (0.1ms) BEGIN
605
+  (0.2ms) ROLLBACK
606
+  (0.1ms) BEGIN
607
+  (0.2ms) ROLLBACK
608
+  (0.1ms) BEGIN
609
+  (0.2ms) ROLLBACK
610
+  (0.1ms) BEGIN
611
+  (0.1ms) ROLLBACK
612
+  (0.1ms) BEGIN
613
+  (0.1ms) ROLLBACK
614
+  (0.1ms) BEGIN
615
+  (0.1ms) ROLLBACK
616
+  (0.1ms) BEGIN
617
+  (0.1ms) ROLLBACK
618
+  (0.1ms) BEGIN
619
+  (0.1ms) ROLLBACK
620
+  (0.1ms) BEGIN
621
+  (0.1ms) ROLLBACK
622
+  (0.1ms) BEGIN
623
+  (0.2ms) ROLLBACK
624
+  (0.1ms) BEGIN
625
+  (0.1ms) ROLLBACK
626
+  (0.1ms) BEGIN
627
+  (0.1ms) ROLLBACK
628
+  (0.1ms) BEGIN
629
+  (0.1ms) ROLLBACK
630
+  (0.1ms) BEGIN
631
+  (0.1ms) ROLLBACK
632
+  (0.1ms) BEGIN
633
+  (0.2ms) ROLLBACK
634
+  (0.1ms) BEGIN
635
+  (0.1ms) ROLLBACK
636
+  (0.1ms) BEGIN
637
+  (0.1ms) ROLLBACK
638
+  (0.1ms) BEGIN
639
+  (0.2ms) ROLLBACK
640
+  (0.1ms) BEGIN
641
+  (0.2ms) ROLLBACK
642
+  (0.2ms) BEGIN
643
+  (0.2ms) ROLLBACK
644
+  (0.1ms) BEGIN
645
+  (0.2ms) ROLLBACK
646
+  (0.1ms) BEGIN
647
+  (0.2ms) ROLLBACK
648
+  (0.1ms) BEGIN
649
+  (0.2ms) ROLLBACK
650
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
651
+  (115.9ms) DROP DATABASE IF EXISTS "poring_backup_test"
652
+  (241.2ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
653
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
654
+  (3.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
655
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
+  (0.3ms) SELECT version FROM "schema_migrations"
657
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
658
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
659
+  (0.3ms) BEGIN
660
+  (0.4ms) ROLLBACK
661
+  (0.3ms) BEGIN
662
+  (0.3ms) ROLLBACK
663
+  (0.1ms) BEGIN
664
+  (0.2ms) ROLLBACK
665
+  (0.1ms) BEGIN
666
+  (0.2ms) ROLLBACK
667
+  (0.1ms) BEGIN
668
+  (0.2ms) ROLLBACK
669
+  (0.1ms) BEGIN
670
+  (0.2ms) ROLLBACK
671
+  (0.1ms) BEGIN
672
+  (0.1ms) ROLLBACK
673
+  (0.1ms) BEGIN
674
+  (0.2ms) ROLLBACK
675
+  (0.1ms) BEGIN
676
+  (0.2ms) ROLLBACK
677
+  (0.1ms) BEGIN
678
+  (0.1ms) ROLLBACK
679
+  (0.1ms) BEGIN
680
+  (0.1ms) ROLLBACK
681
+  (0.1ms) BEGIN
682
+  (0.1ms) ROLLBACK
683
+  (0.1ms) BEGIN
684
+  (0.1ms) ROLLBACK
685
+  (0.1ms) BEGIN
686
+  (0.1ms) ROLLBACK
687
+  (0.1ms) BEGIN
688
+  (0.1ms) ROLLBACK
689
+  (0.1ms) BEGIN
690
+  (0.2ms) ROLLBACK
691
+  (0.1ms) BEGIN
692
+  (0.1ms) ROLLBACK
693
+  (0.1ms) BEGIN
694
+  (0.1ms) ROLLBACK
695
+  (0.1ms) BEGIN
696
+  (0.1ms) ROLLBACK
697
+  (0.1ms) BEGIN
698
+  (0.1ms) ROLLBACK
699
+  (0.1ms) BEGIN
700
+  (0.2ms) ROLLBACK
701
+  (0.1ms) BEGIN
702
+  (0.1ms) ROLLBACK
703
+  (0.1ms) BEGIN
704
+  (0.1ms) ROLLBACK
705
+  (0.1ms) BEGIN
706
+  (0.2ms) ROLLBACK
707
+  (0.1ms) BEGIN
708
+  (0.2ms) ROLLBACK
709
+  (0.1ms) BEGIN
710
+  (0.1ms) ROLLBACK
711
+  (0.1ms) BEGIN
712
+  (0.2ms) ROLLBACK
713
+  (0.1ms) BEGIN
714
+  (0.2ms) ROLLBACK
715
+  (0.1ms) BEGIN
716
+  (0.2ms) ROLLBACK
717
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
718
+  (116.8ms) DROP DATABASE IF EXISTS "poring_backup_test"
719
+  (243.5ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
720
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
721
+  (4.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
722
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
723
+  (0.4ms) SELECT version FROM "schema_migrations"
724
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
725
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
726
+  (0.4ms) BEGIN
727
+  (0.4ms) ROLLBACK
728
+  (0.1ms) BEGIN
729
+  (0.2ms) ROLLBACK
730
+  (0.1ms) BEGIN
731
+  (0.2ms) ROLLBACK
732
+  (0.2ms) BEGIN
733
+  (0.2ms) ROLLBACK
734
+  (0.2ms) BEGIN
735
+  (0.2ms) ROLLBACK
736
+  (0.2ms) BEGIN
737
+  (0.2ms) ROLLBACK
738
+  (0.1ms) BEGIN
739
+  (0.2ms) ROLLBACK
740
+  (0.2ms) BEGIN
741
+  (0.2ms) ROLLBACK
742
+  (0.1ms) BEGIN
743
+  (0.2ms) ROLLBACK
744
+  (0.1ms) BEGIN
745
+  (0.1ms) ROLLBACK
746
+  (0.1ms) BEGIN
747
+  (0.1ms) ROLLBACK
748
+  (0.1ms) BEGIN
749
+  (0.1ms) ROLLBACK
750
+  (0.1ms) BEGIN
751
+  (0.1ms) ROLLBACK
752
+  (0.1ms) BEGIN
753
+  (0.1ms) ROLLBACK
754
+  (0.1ms) BEGIN
755
+  (0.1ms) ROLLBACK
756
+  (0.1ms) BEGIN
757
+  (0.2ms) ROLLBACK
758
+  (0.1ms) BEGIN
759
+  (0.2ms) ROLLBACK
760
+  (0.1ms) BEGIN
761
+  (0.1ms) ROLLBACK
762
+  (0.1ms) BEGIN
763
+  (0.1ms) ROLLBACK
764
+  (0.1ms) BEGIN
765
+  (0.1ms) ROLLBACK
766
+  (0.1ms) BEGIN
767
+  (0.2ms) ROLLBACK
768
+  (0.1ms) BEGIN
769
+  (0.2ms) ROLLBACK
770
+  (0.1ms) BEGIN
771
+  (0.1ms) ROLLBACK
772
+  (0.1ms) BEGIN
773
+  (0.2ms) ROLLBACK
774
+  (0.1ms) BEGIN
775
+  (0.2ms) ROLLBACK
776
+  (0.1ms) BEGIN
777
+  (0.3ms) ROLLBACK
778
+  (0.1ms) BEGIN
779
+  (0.2ms) ROLLBACK
780
+  (0.1ms) BEGIN
781
+  (0.2ms) ROLLBACK
782
+  (0.1ms) BEGIN
783
+  (0.2ms) ROLLBACK
784
+ ActiveRecord::SchemaMigration Load (1.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
785
+  (125.4ms) DROP DATABASE IF EXISTS "poring_backup_test"
786
+  (343.4ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
787
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
788
+  (12.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
789
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
790
+  (0.3ms) SELECT version FROM "schema_migrations"
791
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
792
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
793
+  (0.3ms) BEGIN
794
+  (0.2ms) ROLLBACK
795
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
796
+  (112.8ms) DROP DATABASE IF EXISTS "poring_backup_test"
797
+  (366.8ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
798
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
799
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
800
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
801
+  (0.3ms) SELECT version FROM "schema_migrations"
802
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
803
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
804
+  (0.2ms) BEGIN
805
+  (0.1ms) ROLLBACK
806
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
807
+  (112.2ms) DROP DATABASE IF EXISTS "poring_backup_test"
808
+  (326.2ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
809
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
810
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
811
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
812
+  (0.6ms) SELECT version FROM "schema_migrations"
813
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
814
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
815
+  (0.3ms) BEGIN
816
+  (0.1ms) ROLLBACK
817
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
818
+  (115.9ms) DROP DATABASE IF EXISTS "poring_backup_test"
819
+  (368.6ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
820
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
821
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
822
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
823
+  (0.3ms) SELECT version FROM "schema_migrations"
824
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
825
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
826
+  (0.2ms) BEGIN
827
+  (0.1ms) ROLLBACK
828
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
829
+  (113.7ms) DROP DATABASE IF EXISTS "poring_backup_test"
830
+  (336.7ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
831
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
832
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
833
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
834
+  (0.4ms) SELECT version FROM "schema_migrations"
835
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
836
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
837
+  (0.3ms) BEGIN
838
+  (0.2ms) ROLLBACK
839
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
840
+  (115.1ms) DROP DATABASE IF EXISTS "poring_backup_test"
841
+  (251.3ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
842
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
843
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
844
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
845
+  (0.4ms) SELECT version FROM "schema_migrations"
846
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
847
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
848
+  (0.2ms) BEGIN
849
+  (0.2ms) ROLLBACK
850
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
851
+  (116.3ms) DROP DATABASE IF EXISTS "poring_backup_test"
852
+  (252.1ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
853
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
854
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
855
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
856
+  (0.5ms) SELECT version FROM "schema_migrations"
857
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
858
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
859
+  (0.3ms) BEGIN
860
+  (0.2ms) ROLLBACK
861
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
862
+  (116.6ms) DROP DATABASE IF EXISTS "poring_backup_test"
863
+  (340.4ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
864
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
865
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
866
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
867
+  (0.3ms) SELECT version FROM "schema_migrations"
868
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
869
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
870
+  (0.3ms) BEGIN
871
+  (0.1ms) ROLLBACK
872
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
873
+  (115.9ms) DROP DATABASE IF EXISTS "poring_backup_test"
874
+  (335.8ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
875
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
876
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
877
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
878
+  (0.4ms) SELECT version FROM "schema_migrations"
879
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
880
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
881
+  (0.2ms) BEGIN
882
+  (0.2ms) ROLLBACK
883
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
884
+  (111.6ms) DROP DATABASE IF EXISTS "poring_backup_test"
885
+  (343.8ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
886
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
887
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
888
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
889
+  (0.4ms) SELECT version FROM "schema_migrations"
890
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
891
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
892
+  (0.3ms) BEGIN
893
+  (0.2ms) ROLLBACK
894
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
895
+  (112.9ms) DROP DATABASE IF EXISTS "poring_backup_test"
896
+  (341.4ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
897
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
898
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
899
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
900
+  (0.7ms) SELECT version FROM "schema_migrations"
901
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
902
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
903
+  (0.3ms) BEGIN
904
+  (0.2ms) ROLLBACK
905
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
906
+  (115.8ms) DROP DATABASE IF EXISTS "poring_backup_test"
907
+  (241.5ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
908
+ SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
909
+  (4.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
910
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
911
+  (0.4ms) SELECT version FROM "schema_migrations"
912
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
913
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
914
+  (0.4ms) BEGIN
915
+  (0.3ms) ROLLBACK
916
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
917
+  (116.8ms) DROP DATABASE IF EXISTS "poring_backup_test"
918
+  (241.9ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
919
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
920
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
921
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
922
+  (0.3ms) SELECT version FROM "schema_migrations"
923
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
924
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
925
+  (0.2ms) BEGIN
926
+  (0.3ms) ROLLBACK
927
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
928
+  (116.4ms) DROP DATABASE IF EXISTS "poring_backup_test"
929
+  (240.0ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
930
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
931
+  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
932
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
933
+  (0.3ms) SELECT version FROM "schema_migrations"
934
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
935
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
936
+  (0.4ms) BEGIN
937
+  (0.3ms) ROLLBACK
938
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
939
+  (115.9ms) DROP DATABASE IF EXISTS "poring_backup_test"
940
+  (267.2ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
941
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
942
+  (4.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
943
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
944
+  (0.4ms) SELECT version FROM "schema_migrations"
945
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
946
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
947
+  (0.2ms) BEGIN
948
+  (0.2ms) ROLLBACK
949
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
950
+  (114.0ms) DROP DATABASE IF EXISTS "poring_backup_test"
951
+  (336.4ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
952
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
953
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
954
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
955
+  (0.4ms) SELECT version FROM "schema_migrations"
956
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
957
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
958
+  (0.2ms) BEGIN
959
+  (0.1ms) ROLLBACK
960
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
961
+  (116.7ms) DROP DATABASE IF EXISTS "poring_backup_test"
962
+  (242.7ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
963
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
964
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
965
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
966
+  (0.4ms) SELECT version FROM "schema_migrations"
967
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
968
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
969
+  (0.4ms) BEGIN
970
+  (0.3ms) ROLLBACK
971
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
972
+  (114.9ms) DROP DATABASE IF EXISTS "poring_backup_test"
973
+  (241.7ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
974
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
975
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
976
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
977
+  (0.3ms) SELECT version FROM "schema_migrations"
978
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
979
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
980
+  (0.4ms) BEGIN
981
+  (0.2ms) ROLLBACK
982
+  (0.1ms) BEGIN
983
+  (0.1ms) ROLLBACK
984
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
985
+  (117.4ms) DROP DATABASE IF EXISTS "poring_backup_test"
986
+  (340.5ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
987
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
988
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
989
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
990
+  (0.4ms) SELECT version FROM "schema_migrations"
991
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
992
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
993
+  (0.3ms) BEGIN
994
+  (0.3ms) ROLLBACK
995
+  (0.2ms) BEGIN
996
+  (0.2ms) ROLLBACK
997
+  (0.1ms) BEGIN
998
+  (0.2ms) ROLLBACK
999
+  (0.1ms) BEGIN
1000
+  (0.2ms) ROLLBACK
1001
+  (0.1ms) BEGIN
1002
+  (0.2ms) ROLLBACK
1003
+  (0.1ms) BEGIN
1004
+  (0.2ms) ROLLBACK
1005
+  (0.1ms) BEGIN
1006
+  (0.2ms) ROLLBACK
1007
+  (0.1ms) BEGIN
1008
+  (0.2ms) ROLLBACK
1009
+  (0.1ms) BEGIN
1010
+  (0.2ms) ROLLBACK
1011
+  (0.1ms) BEGIN
1012
+  (0.1ms) ROLLBACK
1013
+  (0.1ms) BEGIN
1014
+  (0.1ms) ROLLBACK
1015
+  (0.1ms) BEGIN
1016
+  (0.1ms) ROLLBACK
1017
+  (0.1ms) BEGIN
1018
+  (0.1ms) ROLLBACK
1019
+  (0.1ms) BEGIN
1020
+  (0.1ms) ROLLBACK
1021
+  (0.1ms) BEGIN
1022
+  (0.1ms) ROLLBACK
1023
+  (0.1ms) BEGIN
1024
+  (0.2ms) ROLLBACK
1025
+  (0.1ms) BEGIN
1026
+  (0.1ms) ROLLBACK
1027
+  (0.1ms) BEGIN
1028
+  (0.1ms) ROLLBACK
1029
+  (0.1ms) BEGIN
1030
+  (0.1ms) ROLLBACK
1031
+  (0.1ms) BEGIN
1032
+  (0.1ms) ROLLBACK
1033
+  (0.1ms) BEGIN
1034
+  (0.2ms) ROLLBACK
1035
+  (0.2ms) BEGIN
1036
+  (0.1ms) ROLLBACK
1037
+  (0.1ms) BEGIN
1038
+  (0.1ms) ROLLBACK
1039
+  (0.1ms) BEGIN
1040
+  (0.1ms) ROLLBACK
1041
+  (0.1ms) BEGIN
1042
+  (0.1ms) ROLLBACK
1043
+  (0.2ms) BEGIN
1044
+  (0.2ms) ROLLBACK
1045
+  (0.1ms) BEGIN
1046
+  (0.2ms) ROLLBACK
1047
+  (0.1ms) BEGIN
1048
+  (0.2ms) ROLLBACK
1049
+  (0.1ms) BEGIN
1050
+  (0.2ms) ROLLBACK
1051
+  (0.1ms) BEGIN
1052
+  (0.2ms) ROLLBACK
1053
+  (0.1ms) BEGIN
1054
+  (0.2ms) ROLLBACK
1055
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1056
+  (118.2ms) DROP DATABASE IF EXISTS "poring_backup_test"
1057
+  (342.9ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1058
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1059
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1060
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1061
+  (0.4ms) SELECT version FROM "schema_migrations"
1062
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1063
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1064
+  (0.3ms) BEGIN
1065
+  (0.2ms) ROLLBACK
1066
+  (0.1ms) BEGIN
1067
+  (0.2ms) ROLLBACK
1068
+  (0.1ms) BEGIN
1069
+  (0.2ms) ROLLBACK
1070
+  (0.1ms) BEGIN
1071
+  (0.2ms) ROLLBACK
1072
+  (0.3ms) BEGIN
1073
+  (0.2ms) ROLLBACK
1074
+  (0.1ms) BEGIN
1075
+  (0.2ms) ROLLBACK
1076
+  (0.1ms) BEGIN
1077
+  (0.2ms) ROLLBACK
1078
+  (0.1ms) BEGIN
1079
+  (0.2ms) ROLLBACK
1080
+  (0.1ms) BEGIN
1081
+  (0.2ms) ROLLBACK
1082
+  (0.1ms) BEGIN
1083
+  (0.1ms) ROLLBACK
1084
+  (0.1ms) BEGIN
1085
+  (0.1ms) ROLLBACK
1086
+  (0.1ms) BEGIN
1087
+  (0.1ms) ROLLBACK
1088
+  (0.1ms) BEGIN
1089
+  (0.1ms) ROLLBACK
1090
+  (0.1ms) BEGIN
1091
+  (0.1ms) ROLLBACK
1092
+  (0.1ms) BEGIN
1093
+  (0.1ms) ROLLBACK
1094
+  (0.1ms) BEGIN
1095
+  (0.2ms) ROLLBACK
1096
+  (0.1ms) BEGIN
1097
+  (0.1ms) ROLLBACK
1098
+  (0.1ms) BEGIN
1099
+  (0.1ms) ROLLBACK
1100
+  (0.1ms) BEGIN
1101
+  (0.1ms) ROLLBACK
1102
+  (0.1ms) BEGIN
1103
+  (0.1ms) ROLLBACK
1104
+  (0.1ms) BEGIN
1105
+  (0.2ms) ROLLBACK
1106
+  (0.1ms) BEGIN
1107
+  (0.2ms) ROLLBACK
1108
+  (0.1ms) BEGIN
1109
+  (0.1ms) ROLLBACK
1110
+  (0.1ms) BEGIN
1111
+  (0.1ms) ROLLBACK
1112
+  (0.1ms) BEGIN
1113
+  (0.1ms) ROLLBACK
1114
+  (0.1ms) BEGIN
1115
+  (0.2ms) ROLLBACK
1116
+  (0.1ms) BEGIN
1117
+  (0.2ms) ROLLBACK
1118
+  (0.1ms) BEGIN
1119
+  (0.1ms) ROLLBACK
1120
+  (0.2ms) BEGIN
1121
+  (0.2ms) ROLLBACK
1122
+  (0.1ms) BEGIN
1123
+  (0.2ms) ROLLBACK
1124
+  (0.2ms) BEGIN
1125
+  (0.2ms) ROLLBACK
1126
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1127
+  (117.4ms) DROP DATABASE IF EXISTS "poring_backup_test"
1128
+  (355.8ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1129
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1130
+  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1131
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1132
+  (0.3ms) SELECT version FROM "schema_migrations"
1133
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1134
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1135
+  (0.3ms) BEGIN
1136
+  (0.3ms) ROLLBACK
1137
+  (0.1ms) BEGIN
1138
+  (0.2ms) ROLLBACK
1139
+  (0.1ms) BEGIN
1140
+  (0.2ms) ROLLBACK
1141
+  (0.1ms) BEGIN
1142
+  (0.2ms) ROLLBACK
1143
+  (0.1ms) BEGIN
1144
+  (0.2ms) ROLLBACK
1145
+  (0.2ms) BEGIN
1146
+  (0.2ms) ROLLBACK
1147
+  (0.1ms) BEGIN
1148
+  (0.2ms) ROLLBACK
1149
+  (0.1ms) BEGIN
1150
+  (0.2ms) ROLLBACK
1151
+  (0.1ms) BEGIN
1152
+  (0.2ms) ROLLBACK
1153
+  (0.1ms) BEGIN
1154
+  (0.1ms) ROLLBACK
1155
+  (0.2ms) BEGIN
1156
+  (0.1ms) ROLLBACK
1157
+  (0.1ms) BEGIN
1158
+  (0.1ms) ROLLBACK
1159
+  (0.1ms) BEGIN
1160
+  (0.1ms) ROLLBACK
1161
+  (0.1ms) BEGIN
1162
+  (0.1ms) ROLLBACK
1163
+  (0.1ms) BEGIN
1164
+  (0.1ms) ROLLBACK
1165
+  (0.1ms) BEGIN
1166
+  (0.2ms) ROLLBACK
1167
+  (0.1ms) BEGIN
1168
+  (0.1ms) ROLLBACK
1169
+  (0.1ms) BEGIN
1170
+  (0.1ms) ROLLBACK
1171
+  (0.1ms) BEGIN
1172
+  (0.1ms) ROLLBACK
1173
+  (0.1ms) BEGIN
1174
+  (0.1ms) ROLLBACK
1175
+  (0.1ms) BEGIN
1176
+  (0.2ms) ROLLBACK
1177
+  (0.1ms) BEGIN
1178
+  (0.1ms) ROLLBACK
1179
+  (0.1ms) BEGIN
1180
+  (0.1ms) ROLLBACK
1181
+  (0.1ms) BEGIN
1182
+  (0.1ms) ROLLBACK
1183
+  (0.1ms) BEGIN
1184
+  (0.1ms) ROLLBACK
1185
+  (0.1ms) BEGIN
1186
+  (0.2ms) ROLLBACK
1187
+  (0.2ms) BEGIN
1188
+  (0.2ms) ROLLBACK
1189
+  (0.1ms) BEGIN
1190
+  (0.2ms) ROLLBACK
1191
+  (0.2ms) BEGIN
1192
+  (0.2ms) ROLLBACK
1193
+  (0.1ms) BEGIN
1194
+  (0.2ms) ROLLBACK
1195
+  (0.1ms) BEGIN
1196
+  (0.2ms) ROLLBACK
1197
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1198
+  (116.3ms) DROP DATABASE IF EXISTS "poring_backup_test"
1199
+  (239.1ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1200
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1201
+  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1202
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1203
+  (0.7ms) SELECT version FROM "schema_migrations"
1204
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1205
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1206
+  (0.4ms) BEGIN
1207
+  (0.2ms) ROLLBACK
1208
+  (0.1ms) BEGIN
1209
+  (0.2ms) ROLLBACK
1210
+  (0.1ms) BEGIN
1211
+  (0.2ms) ROLLBACK
1212
+  (0.1ms) BEGIN
1213
+  (0.2ms) ROLLBACK
1214
+  (0.1ms) BEGIN
1215
+  (0.2ms) ROLLBACK
1216
+  (0.1ms) BEGIN
1217
+  (0.2ms) ROLLBACK
1218
+  (0.1ms) BEGIN
1219
+  (0.2ms) ROLLBACK
1220
+  (0.1ms) BEGIN
1221
+  (0.2ms) ROLLBACK
1222
+  (0.1ms) BEGIN
1223
+  (0.2ms) ROLLBACK
1224
+  (0.1ms) BEGIN
1225
+  (0.1ms) ROLLBACK
1226
+  (0.1ms) BEGIN
1227
+  (0.1ms) ROLLBACK
1228
+  (0.1ms) BEGIN
1229
+  (0.1ms) ROLLBACK
1230
+  (0.1ms) BEGIN
1231
+  (0.1ms) ROLLBACK
1232
+  (0.1ms) BEGIN
1233
+  (0.1ms) ROLLBACK
1234
+  (0.1ms) BEGIN
1235
+  (0.1ms) ROLLBACK
1236
+  (0.1ms) BEGIN
1237
+  (0.2ms) ROLLBACK
1238
+  (0.1ms) BEGIN
1239
+  (0.1ms) ROLLBACK
1240
+  (0.1ms) BEGIN
1241
+  (0.1ms) ROLLBACK
1242
+  (0.1ms) BEGIN
1243
+  (0.1ms) ROLLBACK
1244
+  (0.1ms) BEGIN
1245
+  (0.1ms) ROLLBACK
1246
+  (0.1ms) BEGIN
1247
+  (0.2ms) ROLLBACK
1248
+  (0.1ms) BEGIN
1249
+  (0.2ms) ROLLBACK
1250
+  (0.1ms) BEGIN
1251
+  (0.1ms) ROLLBACK
1252
+  (0.1ms) BEGIN
1253
+  (0.1ms) ROLLBACK
1254
+  (0.1ms) BEGIN
1255
+  (0.2ms) ROLLBACK
1256
+  (0.1ms) BEGIN
1257
+  (0.2ms) ROLLBACK
1258
+  (0.1ms) BEGIN
1259
+  (0.2ms) ROLLBACK
1260
+  (0.1ms) BEGIN
1261
+  (0.2ms) ROLLBACK
1262
+  (0.1ms) BEGIN
1263
+  (0.2ms) ROLLBACK
1264
+  (0.1ms) BEGIN
1265
+  (0.2ms) ROLLBACK
1266
+  (0.3ms) BEGIN
1267
+  (0.2ms) ROLLBACK
1268
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1269
+  (117.6ms) DROP DATABASE IF EXISTS "poring_backup_test"
1270
+  (244.7ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1271
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1272
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1273
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1274
+  (0.4ms) SELECT version FROM "schema_migrations"
1275
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1276
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1277
+  (0.2ms) BEGIN
1278
+  (0.2ms) ROLLBACK
1279
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1280
+  (115.2ms) DROP DATABASE IF EXISTS "poring_backup_test"
1281
+  (241.8ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1282
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1283
+  (3.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1284
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1285
+  (0.4ms) SELECT version FROM "schema_migrations"
1286
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1287
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1288
+  (0.4ms) BEGIN
1289
+  (0.2ms) ROLLBACK
1290
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1291
+  (114.6ms) DROP DATABASE IF EXISTS "poring_backup_test"
1292
+  (406.0ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1293
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1294
+  (4.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1295
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1296
+  (0.3ms) SELECT version FROM "schema_migrations"
1297
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1298
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1299
+  (0.5ms) BEGIN
1300
+  (0.3ms) ROLLBACK
1301
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1302
+  (114.1ms) DROP DATABASE IF EXISTS "poring_backup_test"
1303
+  (362.1ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1304
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1305
+  (3.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1306
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1307
+  (0.4ms) SELECT version FROM "schema_migrations"
1308
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1309
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
1310
+  (0.3ms) BEGIN
1311
+  (0.2ms) ROLLBACK
1312
+ ActiveRecord::SchemaMigration Load (19.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1313
+  (117.0ms) DROP DATABASE IF EXISTS "poring_backup_test"
1314
+  (370.1ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1315
+ SQL (1.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1316
+  (13.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1317
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1318
+  (0.5ms) SELECT version FROM "schema_migrations"
1319
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1320
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1321
+  (0.3ms) BEGIN
1322
+  (0.3ms) ROLLBACK
1323
+  (0.1ms) BEGIN
1324
+  (0.2ms) ROLLBACK
1325
+  (0.1ms) BEGIN
1326
+  (0.2ms) ROLLBACK
1327
+  (0.1ms) BEGIN
1328
+  (0.2ms) ROLLBACK
1329
+  (0.1ms) BEGIN
1330
+  (0.2ms) ROLLBACK
1331
+  (0.1ms) BEGIN
1332
+  (0.2ms) ROLLBACK
1333
+  (0.1ms) BEGIN
1334
+  (0.2ms) ROLLBACK
1335
+  (0.1ms) BEGIN
1336
+  (0.2ms) ROLLBACK
1337
+  (0.1ms) BEGIN
1338
+  (0.2ms) ROLLBACK
1339
+  (0.1ms) BEGIN
1340
+  (0.1ms) ROLLBACK
1341
+  (0.1ms) BEGIN
1342
+  (0.1ms) ROLLBACK
1343
+  (0.1ms) BEGIN
1344
+  (0.1ms) ROLLBACK
1345
+  (0.1ms) BEGIN
1346
+  (0.1ms) ROLLBACK
1347
+  (0.1ms) BEGIN
1348
+  (0.1ms) ROLLBACK
1349
+  (0.1ms) BEGIN
1350
+  (0.1ms) ROLLBACK
1351
+  (0.1ms) BEGIN
1352
+  (0.2ms) ROLLBACK
1353
+  (0.1ms) BEGIN
1354
+  (0.1ms) ROLLBACK
1355
+  (0.1ms) BEGIN
1356
+  (0.1ms) ROLLBACK
1357
+  (0.1ms) BEGIN
1358
+  (0.1ms) ROLLBACK
1359
+  (0.1ms) BEGIN
1360
+  (0.1ms) ROLLBACK
1361
+  (0.1ms) BEGIN
1362
+  (0.2ms) ROLLBACK
1363
+  (0.1ms) BEGIN
1364
+  (0.1ms) ROLLBACK
1365
+  (0.1ms) BEGIN
1366
+  (0.1ms) ROLLBACK
1367
+  (0.2ms) BEGIN
1368
+  (0.1ms) ROLLBACK
1369
+  (0.1ms) BEGIN
1370
+  (0.1ms) ROLLBACK
1371
+  (0.1ms) BEGIN
1372
+  (0.2ms) ROLLBACK
1373
+  (0.1ms) BEGIN
1374
+  (0.2ms) ROLLBACK
1375
+  (0.1ms) BEGIN
1376
+  (0.2ms) ROLLBACK
1377
+  (0.2ms) BEGIN
1378
+  (0.2ms) ROLLBACK
1379
+  (0.1ms) BEGIN
1380
+  (0.2ms) ROLLBACK
1381
+  (0.2ms) BEGIN
1382
+  (0.2ms) ROLLBACK
1383
+ ActiveRecord::SchemaMigration Load (26.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
1384
+  (116.1ms) DROP DATABASE IF EXISTS "poring_backup_test"
1385
+  (373.0ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1386
+ SQL (1.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1387
+  (5.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1388
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1389
+  (0.5ms) SELECT version FROM "schema_migrations"
1390
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1391
+ ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1392
+  (0.3ms) BEGIN
1393
+  (0.2ms) ROLLBACK
1394
+  (0.1ms) BEGIN
1395
+  (0.2ms) ROLLBACK
1396
+  (0.2ms) BEGIN
1397
+  (0.2ms) ROLLBACK
1398
+  (0.2ms) BEGIN
1399
+  (0.2ms) ROLLBACK
1400
+  (0.2ms) BEGIN
1401
+  (0.2ms) ROLLBACK
1402
+  (0.1ms) BEGIN
1403
+  (0.2ms) ROLLBACK
1404
+  (0.1ms) BEGIN
1405
+  (0.2ms) ROLLBACK
1406
+  (0.1ms) BEGIN
1407
+  (0.1ms) ROLLBACK
1408
+  (0.1ms) BEGIN
1409
+  (0.1ms) ROLLBACK
1410
+  (0.1ms) BEGIN
1411
+  (0.1ms) ROLLBACK
1412
+  (0.1ms) BEGIN
1413
+  (0.1ms) ROLLBACK
1414
+  (0.1ms) BEGIN
1415
+  (0.1ms) ROLLBACK
1416
+  (0.1ms) BEGIN
1417
+  (0.1ms) ROLLBACK
1418
+  (0.1ms) BEGIN
1419
+  (0.1ms) ROLLBACK
1420
+  (0.1ms) BEGIN
1421
+  (0.1ms) ROLLBACK
1422
+  (0.2ms) BEGIN
1423
+  (0.2ms) ROLLBACK
1424
+  (0.2ms) BEGIN
1425
+  (0.2ms) ROLLBACK
1426
+  (0.1ms) BEGIN
1427
+  (0.1ms) ROLLBACK
1428
+  (0.1ms) BEGIN
1429
+  (0.1ms) ROLLBACK
1430
+  (0.1ms) BEGIN
1431
+  (0.1ms) ROLLBACK
1432
+  (0.1ms) BEGIN
1433
+  (0.2ms) ROLLBACK
1434
+  (0.1ms) BEGIN
1435
+  (0.2ms) ROLLBACK
1436
+  (0.1ms) BEGIN
1437
+  (0.1ms) ROLLBACK
1438
+  (0.2ms) BEGIN
1439
+  (0.2ms) ROLLBACK
1440
+  (0.2ms) BEGIN
1441
+  (0.2ms) ROLLBACK
1442
+  (0.1ms) BEGIN
1443
+  (0.3ms) ROLLBACK
1444
+  (0.1ms) BEGIN
1445
+  (0.2ms) ROLLBACK
1446
+  (0.1ms) BEGIN
1447
+  (0.2ms) ROLLBACK
1448
+  (0.1ms) BEGIN
1449
+  (0.2ms) ROLLBACK
1450
+  (0.1ms) BEGIN
1451
+  (0.2ms) ROLLBACK
1452
+  (0.1ms) BEGIN
1453
+  (0.2ms) ROLLBACK
1454
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1455
+  (113.8ms) DROP DATABASE IF EXISTS "poring_backup_test"
1456
+  (331.0ms) CREATE DATABASE "poring_backup_test" ENCODING = 'unicode' TEMPLATE = "template0"
1457
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1458
+  (3.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1459
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1460
+  (0.4ms) SELECT version FROM "schema_migrations"
1461
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1462
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1463
+  (0.3ms) BEGIN
1464
+  (0.2ms) ROLLBACK
1465
+  (0.1ms) BEGIN
1466
+  (0.2ms) ROLLBACK
1467
+  (0.1ms) BEGIN
1468
+  (0.2ms) ROLLBACK
1469
+  (0.1ms) BEGIN
1470
+  (0.2ms) ROLLBACK
1471
+  (0.1ms) BEGIN
1472
+  (0.2ms) ROLLBACK
1473
+  (0.1ms) BEGIN
1474
+  (0.2ms) ROLLBACK
1475
+  (0.2ms) BEGIN
1476
+  (0.2ms) ROLLBACK
1477
+  (0.1ms) BEGIN
1478
+  (0.2ms) ROLLBACK
1479
+  (0.2ms) BEGIN
1480
+  (0.2ms) ROLLBACK
1481
+  (0.1ms) BEGIN
1482
+  (0.1ms) ROLLBACK
1483
+  (0.1ms) BEGIN
1484
+  (0.1ms) ROLLBACK
1485
+  (0.1ms) BEGIN
1486
+  (0.1ms) ROLLBACK
1487
+  (0.2ms) BEGIN
1488
+  (0.2ms) ROLLBACK
1489
+  (0.2ms) BEGIN
1490
+  (0.1ms) ROLLBACK
1491
+  (0.1ms) BEGIN
1492
+  (0.1ms) ROLLBACK
1493
+  (0.1ms) BEGIN
1494
+  (0.2ms) ROLLBACK
1495
+  (0.1ms) BEGIN
1496
+  (0.1ms) ROLLBACK
1497
+  (0.1ms) BEGIN
1498
+  (0.1ms) ROLLBACK
1499
+  (0.1ms) BEGIN
1500
+  (0.1ms) ROLLBACK
1501
+  (0.1ms) BEGIN
1502
+  (0.1ms) ROLLBACK
1503
+  (0.1ms) BEGIN
1504
+  (0.2ms) ROLLBACK
1505
+  (0.2ms) BEGIN
1506
+  (0.2ms) ROLLBACK
1507
+  (0.1ms) BEGIN
1508
+  (0.1ms) ROLLBACK
1509
+  (0.1ms) BEGIN
1510
+  (0.1ms) ROLLBACK
1511
+  (0.1ms) BEGIN
1512
+  (0.1ms) ROLLBACK
1513
+  (0.1ms) BEGIN
1514
+  (0.2ms) ROLLBACK
1515
+  (0.1ms) BEGIN
1516
+  (0.2ms) ROLLBACK
1517
+  (0.1ms) BEGIN
1518
+  (0.3ms) ROLLBACK
1519
+  (0.1ms) BEGIN
1520
+  (0.2ms) ROLLBACK
1521
+  (0.1ms) BEGIN
1522
+  (0.2ms) ROLLBACK
1523
+  (0.1ms) BEGIN
1524
+  (0.2ms) ROLLBACK