-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.txt
19 lines (16 loc) · 830 Bytes
/
db.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is an auto-generated Django model module.
# You'll have to do the following manually to clean this up:
# * Rearrange models' order
# * Make sure each model has one field with primary_key=True
# * Make sure each ForeignKey has `on_delete` set to the desired behavior.
# * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table
# Feel free to rename the models, but don't rename db_table values or field names.
from django.db import models
class District(models.Model):
gid = models.AutoField(primary_key=True)
district = models.CharField(max_length=50, blank=True, null=True)
first_stat = models.IntegerField(blank=True, null=True)
geom = models.GeometryField(blank=True, null=True)
class Meta:
managed = False
db_table = 'district'