i
x , X
o , O
i
x , X
o , O
Notic :
If you have foreign key in new filds,must allow null(like below) or set default value else don't work
from django.db.models.signals import post_save
from django.dispatch import receiver
class Role(models.Model):
RoleID = models.IntegerField(primary_key=True)
name = models.CharField(max_length=10)
from django.db import models
class Blog(models.Model):
name = models.CharField(max_length=100)
tagline = models.TextField()
| #include <Arduino.h> | |
| #include <ESP8266WiFi.h> | |
| #include <WiFiClient.h> | |
| const uint16_t port = 8585; | |
| const char *host = "SERVER-IP"; | |
| WiFiClient client; | |
| void setup() | |
| { | |
| Serial.begin(115200); |