This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /src # sh tools/start.sh | |
| ==> Django setup, Start | |
| ==> Environment: Production | |
| ==> Django setup, executing: migrate | |
| System check identified some issues: | |
| WARNINGS: | |
| ?: (mysql.W002) MySQL Strict Mode is not set for database connection 'default' | |
| HINT: MySQL's Strict Mode fixes many data integrity problems in MySQL, such as data truncation upon insertion, by escalating warnings into errors. It is strongly recommended you activate it. See: https://docs.djangoproject.com/en/3.0/ref/databases/#mysql-sql-mode | |
| Operations to perform: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "strings" | |
| "time" | |
| ) | |
| type DateCreatedAt time.Time |
OlderNewer