thecore_print_commons 3.0.6 → 3.0.7
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: 3609f24106f112ba1b77c86bbb07da098f9c9ad7d330394181063afcbb9785de
|
4
|
+
data.tar.gz: 1180f8a2760b9afbe98f8ada55e7163ba6feab102e92c4b9c36a410c81605ae3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f91e0a3745c16f24d405375ca12236f155336a91ae104702b86e8fddfa7de68b27a178d3b99f36753217340460a09e9020a938480fa8a1b66aa22d2fe08e9c81
|
7
|
+
data.tar.gz: 901ef037b5e7ab6ba828106e6689cc1996afb158e72151280f3a1eccbda7a1a8dfe34cce0121a7f904c0e672bcc1f3216a075a9b61e3af9621751b48b426b26e
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class AddPrintTemplateIdToPrinter < ActiveRecord::Migration[7.0]
|
2
2
|
def change
|
3
|
-
add_column :printers, :print_template_id, :bigint,
|
4
|
-
add_index :printers, :print_template_id,
|
3
|
+
add_column :printers, :print_template_id, :bigint, if_not_exists: true
|
4
|
+
add_index :printers, :print_template_id, if_not_exists: true
|
5
5
|
end
|
6
6
|
end
|