You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

49 line
1.8 KiB

  1. # Generated by Django 4.1.9 on 2023-07-17 22:36
  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='Address',
  10. fields=[
  11. ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  12. ('address_line_1', models.CharField(max_length=200)),
  13. ('address_line_2', models.CharField(blank=True, max_length=200)),
  14. ('city', models.CharField(max_length=50)),
  15. ('state', models.CharField(max_length=50)),
  16. ('zip_code', models.CharField(max_length=10)),
  17. ('country', models.CharField(max_length=50)),
  18. ],
  19. options={
  20. 'db_table': 'address',
  21. },
  22. ),
  23. migrations.CreateModel(
  24. name='BankDetails',
  25. fields=[
  26. ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  27. ('beneficiary_name', models.CharField(max_length=50)),
  28. ('bank_name', models.CharField(max_length=50)),
  29. ('account_number', models.CharField(max_length=20)),
  30. ('ifsc_code', models.CharField(max_length=20)),
  31. ('branch_name', models.CharField(max_length=50)),
  32. ('upi_id', models.CharField(blank=True, max_length=50)),
  33. ],
  34. ),
  35. migrations.CreateModel(
  36. name='NatureOfBusiness',
  37. fields=[
  38. ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  39. ('name', models.CharField(max_length=50)),
  40. ],
  41. ),
  42. ]