Skip to content

Commit

Permalink
修复项目操作记录bug
Browse files Browse the repository at this point in the history
  • Loading branch information
welliamcao committed May 7, 2017
1 parent 07d59f5 commit ee0ad2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpsManage/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class Log_Project_Config(models.Model):
project_user = models.CharField(max_length=50,verbose_name='操作用户',default=None)
project_name = models.CharField(max_length=100,verbose_name='名称',default=None)
project_content = models.CharField(max_length=100,default=None)
project_branch = models.CharField(max_length=100,default=None)
project_branch = models.CharField(max_length=100,default=None,blank=True,null=True)
create_time = models.DateTimeField(auto_now_add=True,blank=True,null=True,verbose_name='执行时间')
class Meta:
db_table = 'opsmanage_log_project_config'
Expand Down

0 comments on commit ee0ad2f

Please sign in to comment.