Untitled
unknown
plain_text
2 years ago
953 B
4
Indexable
class ProfUserOutsideUS(models.Model): user_id = models.IntegerField(unique=True,) date_created = models.DateTimeField(auto_now_add=True) class Meta: managed = False db_table = 'prof_user_outside_US' # -*- coding: utf-8 -*- # Generated by Django 1.11.3 on 2023-04-24 19:10 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('user', '0136_auto_20230404_1223'), ] operations = [ migrations.CreateModel( name='ProfUserOutsideUS', fields=[ ('user_id', models.IntegerField(primary_key=True)), ('date_created', models.DateTimeField(auto_now_add=True)), ], options={ 'db_table': 'prof_user_outside_US', 'managed': settings.TESTING, }, ), ]
Editor is loading...