hockey-blast-common-lib 0.1.53__py3-none-any.whl → 0.1.54__py3-none-any.whl
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.
- hockey_blast_common_lib/hockey_blast_sample_backup.sql.gz +0 -0
- hockey_blast_common_lib/models.py +5 -1
- {hockey_blast_common_lib-0.1.53.dist-info → hockey_blast_common_lib-0.1.54.dist-info}/METADATA +1 -1
- {hockey_blast_common_lib-0.1.53.dist-info → hockey_blast_common_lib-0.1.54.dist-info}/RECORD +6 -6
- {hockey_blast_common_lib-0.1.53.dist-info → hockey_blast_common_lib-0.1.54.dist-info}/WHEEL +0 -0
- {hockey_blast_common_lib-0.1.53.dist-info → hockey_blast_common_lib-0.1.54.dist-info}/top_level.txt +0 -0
Binary file
|
@@ -322,7 +322,11 @@ class Shootout(db.Model):
|
|
322
322
|
class Team(db.Model):
|
323
323
|
__tablename__ = 'teams'
|
324
324
|
id = db.Column(db.Integer, primary_key=True)
|
325
|
-
name = db.Column(db.String(100),
|
325
|
+
name = db.Column(db.String(100), nullable=False)
|
326
|
+
org_id = db.Column(db.Integer, db.ForeignKey('organizations.id'), nullable=False)
|
327
|
+
__table_args__ = (
|
328
|
+
db.UniqueConstraint('org_id', 'name', name='_org_team_name_uc'),
|
329
|
+
)
|
326
330
|
|
327
331
|
class TeamDivision(db.Model):
|
328
332
|
__tablename__ = 'teams_divisions'
|
{hockey_blast_common_lib-0.1.53.dist-info → hockey_blast_common_lib-0.1.54.dist-info}/RECORD
RENAMED
@@ -10,8 +10,8 @@ hockey_blast_common_lib/assign_skater_skill.py,sha256=8gAiqQm14QMFJNmdKb2jjaGyQl
|
|
10
10
|
hockey_blast_common_lib/db_connection.py,sha256=HvPxDvOj7j5H85RfslGvHVNevfg7mKCd0syJ6NX21mU,1890
|
11
11
|
hockey_blast_common_lib/dump_sample_db.sh,sha256=MY3lnzTXBoWd76-ZlZr9nWsKMEVgyRsUn-LZ2d1JWZs,810
|
12
12
|
hockey_blast_common_lib/h2h_models.py,sha256=0st4xoJO0U6ONfx3BV03BQvHjZE31e_PqZfphAJMoSU,7968
|
13
|
-
hockey_blast_common_lib/hockey_blast_sample_backup.sql.gz,sha256=
|
14
|
-
hockey_blast_common_lib/models.py,sha256=
|
13
|
+
hockey_blast_common_lib/hockey_blast_sample_backup.sql.gz,sha256=fzSnsPZVLF7RVGymJcXZPIragcHXnMwX-Levh9LY_ao,4648903
|
14
|
+
hockey_blast_common_lib/models.py,sha256=aa5M1hF-IQ3XbDBgq_GK2pk-GcHtatH94ADEg7GAR7M,16734
|
15
15
|
hockey_blast_common_lib/options.py,sha256=2L4J9rKCKr58om34259D3_s7kbPdknMSwoo6IwTNnx0,849
|
16
16
|
hockey_blast_common_lib/progress_utils.py,sha256=H_zRFOsb2qQQpGw56wJghZ1nUe_m6zqGeR9hZ33Y1Uo,3229
|
17
17
|
hockey_blast_common_lib/restore_sample_db.sh,sha256=7W3lzRZeu9zXIu1Bvtnaw8EHc1ulHmFM4mMh86oUQJo,2205
|
@@ -21,7 +21,7 @@ hockey_blast_common_lib/stats_models.py,sha256=uBNQSqCMXurzS-tD13OoV5WqurYYGHMZM
|
|
21
21
|
hockey_blast_common_lib/stats_utils.py,sha256=DXsPO4jw8XsdRUN46TGF_IiBAfz3GCIVBswCGp5ELDk,284
|
22
22
|
hockey_blast_common_lib/utils.py,sha256=PduHp6HoI4sfr5HvJfQAaz7170dy5kTFVdIfWvBR-Jg,5874
|
23
23
|
hockey_blast_common_lib/wsgi.py,sha256=y3NxoJfWjdzX3iP7RGvDEer6zcnPyCanpqSgW1BlXgg,779
|
24
|
-
hockey_blast_common_lib-0.1.
|
25
|
-
hockey_blast_common_lib-0.1.
|
26
|
-
hockey_blast_common_lib-0.1.
|
27
|
-
hockey_blast_common_lib-0.1.
|
24
|
+
hockey_blast_common_lib-0.1.54.dist-info/METADATA,sha256=ApLUd6xFjG9PecXGI42K-4eyVYLrCbgGNtbccp3EOXY,318
|
25
|
+
hockey_blast_common_lib-0.1.54.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
26
|
+
hockey_blast_common_lib-0.1.54.dist-info/top_level.txt,sha256=wIR4LIkE40npoA2QlOdfCYlgFeGbsHR8Z6r0h46Vtgc,24
|
27
|
+
hockey_blast_common_lib-0.1.54.dist-info/RECORD,,
|
File without changes
|
{hockey_blast_common_lib-0.1.53.dist-info → hockey_blast_common_lib-0.1.54.dist-info}/top_level.txt
RENAMED
File without changes
|