activerecord-snapshot 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df0b6d4cfd32a2749f92fa402eb4bcf3c11cadd7639eed131e4aa303339e2a6c
|
4
|
+
data.tar.gz: 52a7c83917b568d262fb50fd16c84815605eb7046ae3faa89cf3694343f6155d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42c7599a1f7addc4f89f1cbf32243fdec12a25f070c6ab66e38a829fa4259d29c510aafcf03355bf6d53a43690e36bc57a52b619b1e1ebec22d87c07c346fe9b
|
7
|
+
data.tar.gz: 8532fbb8a3356726abae122e0f02dc26bd8c0b3c68cfff9c29d59598cbc94b6956e7cbdf2c714ebde2262c40a88678199f8f6982a0ae233bfdf2d5556837d269
|
@@ -8,8 +8,10 @@ module ActiveRecord
|
|
8
8
|
end
|
9
9
|
|
10
10
|
def dump(tables:, output:)
|
11
|
-
|
12
|
-
|
11
|
+
# the --no-tablespaces and --single-transaction flags are necessary to dump a db
|
12
|
+
# containing SQL view queries and tablespace metadata
|
13
|
+
dump_command("--no-data --single-transaction --no-tablespaces --set-gtid-purged=OFF #{database} > #{output}") &&
|
14
|
+
dump_command("--quick --single-transaction --no-tablespaces --set-gtid-purged=OFF #{database} #{tables.join(" ")} >> #{output}")
|
13
15
|
end
|
14
16
|
|
15
17
|
def self.import(*args)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-snapshot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bernardo Farah
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '0'
|
175
175
|
requirements: []
|
176
|
-
rubygems_version: 3.0.3
|
176
|
+
rubygems_version: 3.0.3.1
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Snapshots for ActiveRecord
|