また、Modelの裏側(正確には・・?)をちょっと見てみよう
また、Modelの裏側(正確には・・?)をちょっと見てみよう
次のようなコードが書かれている
code:db_table
# If the db_table wasn't provided, use the app_label + model_name.
if not self.db_table:
self.db_table = "%s_%s" % (self.app_label, self.model_name)
self.db_table = truncate_name(
self.db_table, connection.ops.max_name_length()
)