mirror of https://github.com/interlegis/sigi.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
committed by
Luciano Almeida
5 changed files with 73 additions and 11 deletions
@ -0,0 +1,14 @@ |
|||
osticket: |
|||
image: campbellsoftwaresolutions/osticket |
|||
ports: |
|||
- "80:80" |
|||
links: |
|||
- mysql |
|||
|
|||
mysql: |
|||
image: mysql |
|||
environment: |
|||
- MYSQL_ROOT_PASSWORD=secret |
|||
- MYSQL_DATABASE=osticket |
|||
- MYSQL_USER=osticket |
|||
- MYSQL_PASSWORD=secret |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.6 on 2016-06-23 13:22 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('solicitacoes', '0003_auto_20160623_0829'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='solicitacao', |
|||
name='osticket', |
|||
field=models.CharField(blank=True, max_length=256, null=True, verbose_name='C\xf3digo Ticket'), |
|||
), |
|||
] |
Loading…
Reference in new issue