0001_initial.py 831 B

123456789101112131415161718192021222324252627282930313233
  1. from django.db import migrations, models
  2. from sentry.new_migrations.migrations import CheckedMigration
  3. class Migration(CheckedMigration):
  4. initial = True
  5. dependencies = []
  6. operations = [
  7. migrations.CreateModel(
  8. name="Value",
  9. fields=[
  10. (
  11. "id",
  12. models.AutoField(
  13. auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
  14. ),
  15. ),
  16. (
  17. "amount",
  18. models.DecimalField(
  19. blank=True, decimal_places=4, default=None, max_digits=12, null=True
  20. ),
  21. ),
  22. ],
  23. options={
  24. "abstract": False,
  25. },
  26. ),
  27. ]