usps-support 0.2.55 → 0.2.56
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 +4 -4
- data/db/hq/members_schema.rb +10 -14
- data/lib/usps/support/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62e9af5356bcd1225e25c991b17f12adfe1aba9966c46fab7c0c579369da84dd
|
|
4
|
+
data.tar.gz: 40296e55d69d18fdef651c805ff126d39e6ba00d9eabaf88dafddc2f8390f2a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33e56e8f63917e3fc353ff5f45d6517696e04e427def8bed96035f263a1e5530d666e6e97ad82930bf2716ab91d89bc76e99ae1c5cfb29ba695098e4617b58d8
|
|
7
|
+
data.tar.gz: 3c53c7c5d9e0a021b30b660d1663c1fa5b7722360f1ea89f04dbfbd6bd1cc09cadb30da31916b8ab9b629b76bc56c1ade9f8aeb2a5c8909c3a9b372a038e4d2a
|
data/db/hq/members_schema.rb
CHANGED
|
@@ -36,18 +36,16 @@ ActiveRecord::Schema[8.1].define do
|
|
|
36
36
|
t.string "died", limit: 8
|
|
37
37
|
end
|
|
38
38
|
|
|
39
|
-
create_table "djdesc", primary_key: "jobcode", id: { type: :string, limit:
|
|
39
|
+
create_table "djdesc", primary_key: "jobcode", id: { type: :string, limit: 7 }, charset: "latin1", comment: "dtb-created daily has active dist Job descritpions", force: :cascade do |t|
|
|
40
40
|
t.string "jdesc", limit: 100
|
|
41
41
|
t.string "rank", limit: 3, null: false
|
|
42
42
|
t.string "prank", limit: 3, null: false
|
|
43
|
-
t.string "
|
|
44
|
-
t.string "
|
|
45
|
-
t.string "
|
|
43
|
+
t.string "type", limit: 1, null: false
|
|
44
|
+
t.string "active", limit: 1, null: false
|
|
45
|
+
t.string "admin", limit: 5, null: false
|
|
46
|
+
t.string "map", limit: 1, null: false
|
|
46
47
|
t.string "Lev", limit: 1, null: false
|
|
47
|
-
t.string "EGA", limit: 1, null: false
|
|
48
48
|
t.string "Descript", limit: 7, null: false
|
|
49
|
-
t.string "OP", limit: 1
|
|
50
|
-
t.string "Sp", limit: 1
|
|
51
49
|
end
|
|
52
50
|
|
|
53
51
|
create_table "djftp", id: false, charset: "latin1", comment: "dtb - Current District Jobs loaded from HQ data", force: :cascade do |t|
|
|
@@ -170,18 +168,16 @@ ActiveRecord::Schema[8.1].define do
|
|
|
170
168
|
t.string "RankAbbr", limit: 15
|
|
171
169
|
end
|
|
172
170
|
|
|
173
|
-
create_table "sjdesc", primary_key: "jobcode", id: { type: :string, limit:
|
|
171
|
+
create_table "sjdesc", primary_key: "jobcode", id: { type: :string, limit: 7 }, charset: "latin1", comment: "dtb-created daily has active squad Job descritpions", force: :cascade do |t|
|
|
174
172
|
t.string "jdesc", limit: 100
|
|
175
173
|
t.string "rank", limit: 3, null: false
|
|
176
174
|
t.string "prank", limit: 3, null: false
|
|
177
|
-
t.string "
|
|
178
|
-
t.string "
|
|
179
|
-
t.string "
|
|
175
|
+
t.string "type", limit: 1, null: false
|
|
176
|
+
t.string "active", limit: 1, null: false
|
|
177
|
+
t.string "admin", limit: 5, null: false
|
|
178
|
+
t.string "map", limit: 1, null: false
|
|
180
179
|
t.string "Lev", limit: 1, null: false
|
|
181
|
-
t.string "EGA", limit: 1, null: false
|
|
182
180
|
t.string "Descript", limit: 7, null: false
|
|
183
|
-
t.string "OP", limit: 1
|
|
184
|
-
t.string "Sp", limit: 1
|
|
185
181
|
end
|
|
186
182
|
|
|
187
183
|
create_table "sjftp", id: false, charset: "latin1", comment: "dtb-created daily from HQ active squadron jobs", force: :cascade do |t|
|
data/lib/usps/support/version.rb
CHANGED