• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-config-service / 3986954599

pending completion
3986954599

push

github

GitHub
Bump types-requests from 2.28.11.7 to 2.28.11.8

940 of 942 relevant lines covered (99.79%)

1.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/chains/migrations/0001_initial.py
1
# Generated by Django 3.2.3 on 2021-06-02 14:44
2
from typing import List, Tuple
1✔
3

4
from django.db import migrations, models
1✔
5

6

7
class Migration(migrations.Migration):
1✔
8

9
    initial = True
1✔
10

11
    dependencies: List[Tuple[str, str]] = []
1✔
12

13
    operations = [
1✔
14
        migrations.CreateModel(
15
            name="Chain",
16
            fields=[
17
                (
18
                    "id",
19
                    models.PositiveBigIntegerField(
20
                        primary_key=True, serialize=False, verbose_name="Chain Id"
21
                    ),
22
                ),
23
                ("name", models.CharField(max_length=255, verbose_name="Chain name")),
24
                ("rpc_url", models.URLField()),
25
                ("block_explorer_url", models.URLField(null=True)),
26
                ("currency_name", models.CharField(max_length=255, null=True)),
27
                ("currency_symbol", models.CharField(max_length=255)),
28
                ("currency_decimals", models.IntegerField(default=18)),
29
            ],
30
        ),
31
    ]
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc