cats_core 1.3.3 → 1.3.4
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: c44a1c208dbd4626ab5eb07ff44c2282e62d37f9ed2023f192de81f948db2b1b
|
4
|
+
data.tar.gz: aaad5e4d7d06b00d6277b60abd7b04e398e01122599f225c99fdfe2d777ddad3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adde6b14c19da6ea4f651351f42249804a5fe4404293f9a7f80e860c3e11527821016859372307a0b4be13d2b007ffdc5171efd87bdb8a397567db468f12acd8
|
7
|
+
data.tar.gz: f28db6afdbab5f01ad463293132d697bbb94870b841833fb795ff6af0a771ca6bf61bc75df9c3067495001055bb50ecb5749ec9dcbaa8e3f9619d4f28f1553dc
|
@@ -5,10 +5,10 @@ class CreateCatsCoreGiftCertificates < ActiveRecord::Migration[6.1]
|
|
5
5
|
t.date :gift_date, null: false
|
6
6
|
|
7
7
|
t.references :donation,
|
8
|
-
null:
|
8
|
+
null: true,
|
9
9
|
index: { name: 'gc_on_donation_indx' },
|
10
10
|
foreign_key: { to_table: :cats_core_donations }
|
11
|
-
|
11
|
+
|
12
12
|
t.string :vessel
|
13
13
|
t.string :port
|
14
14
|
t.string :customs_declaration_no
|
data/lib/cats/core/version.rb
CHANGED