21 | | >>> ServiceAction.objects.create(service_id=1) |
22 | | >>> ServiceAction.objects.create(service_id=1) |
23 | | >>> ServiceAction.objects.create(service_id=1) |
24 | | >>> ServiceAction.objects.create(service_id=2) |
25 | | >>> ServiceAction.objects.create(service_id=2) |
26 | | >>> ServiceAction.objects.create(service_id=2) |
| 21 | >>> ServiceAction.objects.create(service_id=s1.id) |
| 22 | >>> ServiceAction.objects.create(service_id=s1.id) |
| 23 | >>> ServiceAction.objects.create(service_id=s1.id) |
| 24 | >>> ServiceAction.objects.create(service_id=s2.id) |
| 25 | >>> ServiceAction.objects.create(service_id=s2.id) |
| 26 | >>> ServiceAction.objects.create(service_id=s2.id) |