Skip to content

Commit

Permalink
Merge pull request #142 from SmoFlaDru/dev-benno
Browse files Browse the repository at this point in the history
One more column name lowercasing fix
  • Loading branch information
Bensge authored Jan 8, 2025
2 parents 168f3d0 + afce2c3 commit 7378211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spybot/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Migration(migrations.Migration):
name='TSID',
fields=[
('ts_id', models.CharField(db_column='tsID', max_length=32, primary_key=True, serialize=False)),
('tsuser', models.ForeignKey(blank=True, db_column='tsUserID', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='spybot.tsuser')),
('tsuser', models.ForeignKey(blank=True, db_column='tsuserid', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='spybot.tsuser')),
],
options={
'db_table': 'tsid',
Expand Down Expand Up @@ -159,7 +159,7 @@ class Migration(migrations.Migration):
('joined', models.BooleanField(default=False)),
('disconnect_id', models.IntegerField(blank=True, db_column='discID', null=True)),
('channel', models.ForeignKey(db_column='cID', on_delete=django.db.models.deletion.DO_NOTHING, to='spybot.tschannel')),
('tsuser', models.ForeignKey(blank=True, db_column='tsUserID', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='spybot.tsuser')),
('tsuser', models.ForeignKey(blank=True, db_column='tsuserid', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='spybot.tsuser')),
],
options={
'db_table': 'tsuseractivity',
Expand Down

0 comments on commit 7378211

Please sign in to comment.