[dd62f3]: / users / migrations / 0002_userimagepredictinmodel.py

Download this file

30 lines (24 with data), 996 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Generated by Django 2.0.13 on 2020-08-24 04:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='UserImagePredictinModel',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('username', models.CharField(max_length=100)),
('email', models.CharField(max_length=100)),
('loginid', models.CharField(max_length=100)),
('filename', models.CharField(max_length=100)),
('emotions', models.CharField(max_length=100000)),
('file', models.FileField(upload_to='files/')),
('cdate', models.DateTimeField(auto_now_add=True)),
],
options={
'db_table': 'UserImageEmotions',
},
),
]