solid_errors 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d0aea2d7de1780988fcaf95076ac3c904d4808cfaf452fa0af6db797ad50742
|
4
|
+
data.tar.gz: 4bfd4cb85b34faa643c68812b96df4b33b6ff672f5275ddeb9cf986e0e85efdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbb8af32ae976df7a3086b8a5a7ea3bb9472e3d198c660b2c564c25a4a90005a5d2d37a50ee3d4408f0bcaa86ab5ad983d0c4b504ddf4bd85460a53327aa2f30
|
7
|
+
data.tar.gz: 12645a08d974dbe867527051cee97d48eb152f0d044469663ac24549f88321dba547edff5048afb621e872662b537a0056735c7be9ba7912f83ed60759efb413
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class CreateSolidErrorsTables < ActiveRecord::Migration[7.1]
|
2
2
|
def change
|
3
|
-
create_table :
|
3
|
+
create_table :solid_errors do |t|
|
4
4
|
t.string :exception_class, null: false
|
5
5
|
t.string :message, null: false
|
6
6
|
t.string :severity, null: false
|
@@ -12,7 +12,7 @@ class CreateSolidErrorsTables < ActiveRecord::Migration[7.1]
|
|
12
12
|
t.index [:exception_class, :message, :severity, :source], unique: true
|
13
13
|
end
|
14
14
|
|
15
|
-
create_table :
|
15
|
+
create_table :solid_errors_occurrences do |t|
|
16
16
|
t.belongs_to :error, null: false, foreign_key: true
|
17
17
|
t.text :backtrace
|
18
18
|
t.json :context
|
data/lib/solid_errors/version.rb
CHANGED
data/lib/solid_errors.rb
CHANGED