0001_initial.py 778 B

123456789101112131415161718192021222324252627
  1. # Generated by Django 2.0.5 on 2018-05-25 06:28
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = [
  6. ]
  7. operations = [
  8. migrations.CreateModel(
  9. name='Goods',
  10. fields=[
  11. ('id', models.AutoField(db_column='gid', primary_key=True, serialize=False)),
  12. ('name', models.CharField(db_column='gname', max_length=50)),
  13. ('price', models.DecimalField(db_column='gprice', decimal_places=2, max_digits=10)),
  14. ('image', models.CharField(db_column='gimage', max_length=255)),
  15. ],
  16. options={
  17. 'db_table': 'tb_goods',
  18. 'ordering': ('id',),
  19. },
  20. ),
  21. ]