table 썸네일형 리스트형 DB dump with single transaction mysqldump [DB Info] [dump option] [dump target] > /path/to/dump/file.sql If you want to dump with single transaction..just add one option in [dump option] That is "--single-transaction" options.It make the dump process to slow, but it did not lock the table.So you can insert, update...etc..during the db dump process. 더보기 [Django] Use Django ORM without migrate Django ORM is wonderful framwork!!When you want to use it without migrate, can setting simply.Just set managed option to True on Meta class. class TestModel(models.Model): name = models.CharField() ... class Meta: managed = False Defaults to True, meaning Django will create the appropriate database tables in migrate or as part of migrations and remove them as part of a flush management command.T.. 더보기 테이블 정보 보기. SELECT TABLE_NAME,COLUMN_NAME,ORDINAL_POSITION,COLUMN_DEFAULT ,DATA_TYPE,COLUMN_TYPE,COLUMN_KEY,EXTRA,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA='[DB_SCHEMA]' 더보기 이전 1 2 다음