Adding datasnaxx

This commit is contained in:
2026-06-09 22:04:45 -05:00
parent 222bf97d0b
commit 04faf24746
19 changed files with 480 additions and 14 deletions
@@ -0,0 +1,18 @@
# Generated by Django 6.0.1 on 2026-04-05 02:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('contracts', '0014_alter_paragraph_options'),
]
operations = [
migrations.AddField(
model_name='contract',
name='contract_value_int',
field=models.FloatField(blank=True, null=True),
),
]
@@ -0,0 +1,18 @@
# Generated by Django 6.0.1 on 2026-04-05 02:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('contracts', '0015_contract_contract_value_int'),
]
operations = [
migrations.AlterField(
model_name='contract',
name='contract_value_int',
field=models.FloatField(blank=True, null=True),
),
]
+1 -11
View File
@@ -42,17 +42,6 @@ class Tags(models.Model):
return u'%s' % self.name
class Tags(models.Model):
name = models.CharField(max_length=31, unique=True)
desc = models.TextField(blank=True, null=True)
def __unicode__(self):
return "%s" % self.name
def __str__(self):
return u'%s' % self.name
class Company(models.Model):
name = models.CharField(max_length=63)
@@ -120,6 +109,7 @@ class Contract(models.Model):
award_num = models.CharField(max_length=31, blank=True, null=True)
unq_entity_id = models.CharField(max_length=31, blank=True, null=True)
contract_value = models.CharField(max_length=31, blank=True, null=True)
contract_value_int = models.FloatField(blank=True, null=True)
orig_set_aside = models.CharField(max_length=127, blank=True, null=True)
prod_svc_code = models.CharField(max_length=127, blank=True, null=True)
naics_code = models.CharField(max_length=127, blank=True, null=True)