Skip to content

Commit

Permalink
moviendo el proyecto un nivel
Browse files Browse the repository at this point in the history
  • Loading branch information
eos87 committed Oct 4, 2010
1 parent 0f0760d commit a06300e
Show file tree
Hide file tree
Showing 101 changed files with 4,616 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
290 changes: 290 additions & 0 deletions encuesta/migrations/0005_auto__add_field_proyecto_municipio.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

279 changes: 279 additions & 0 deletions encuesta/migrations/0007_auto__chg_field_proyecto_descripcion.py

Large diffs are not rendered by default.

294 changes: 294 additions & 0 deletions encuesta/migrations/0008_auto__add_indicador.py

Large diffs are not rendered by default.

287 changes: 287 additions & 0 deletions encuesta/migrations/0009_auto__chg_field_indicador_slug.py

Large diffs are not rendered by default.

300 changes: 300 additions & 0 deletions encuesta/migrations/0010_auto.py

Large diffs are not rendered by default.

292 changes: 292 additions & 0 deletions encuesta/migrations/0011_auto.py

Large diffs are not rendered by default.

293 changes: 293 additions & 0 deletions encuesta/migrations/0012_auto.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

288 changes: 288 additions & 0 deletions encuesta/migrations/0017_auto__chg_field_encuesta_periodo.py

Large diffs are not rendered by default.

325 changes: 325 additions & 0 deletions encuesta/migrations/0018_auto__add_field_encuesta_user.py

Large diffs are not rendered by default.

325 changes: 325 additions & 0 deletions encuesta/migrations/0019_auto__chg_field_encuesta_user.py

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
Binary file renamed fed/fed.db → fed.db
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added lugar/__init__.py
Empty file.
File renamed without changes.
54 changes: 54 additions & 0 deletions lugar/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# encoding: utf-8
import datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models

class Migration(SchemaMigration):

def forwards(self, orm):

# Adding model 'Departamento'
db.create_table('lugar_departamento', (
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
('nombre', self.gf('django.db.models.fields.CharField')(unique=True, max_length=30)),
('slug', self.gf('django.db.models.fields.SlugField')(max_length=50, unique=True, null=True, db_index=True)),
))
db.send_create_signal('lugar', ['Departamento'])

# Adding model 'Municipio'
db.create_table('lugar_municipio', (
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
('departamento', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['lugar.Departamento'])),
('nombre', self.gf('django.db.models.fields.CharField')(unique=True, max_length=30)),
('slug', self.gf('django.db.models.fields.SlugField')(max_length=50, unique=True, null=True, db_index=True)),
))
db.send_create_signal('lugar', ['Municipio'])


def backwards(self, orm):

# Deleting model 'Departamento'
db.delete_table('lugar_departamento')

# Deleting model 'Municipio'
db.delete_table('lugar_municipio')


models = {
'lugar.departamento': {
'Meta': {'object_name': 'Departamento'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'nombre': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'db_index': 'True'})
},
'lugar.municipio': {
'Meta': {'object_name': 'Municipio'},
'departamento': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['lugar.Departamento']"}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'nombre': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'db_index': 'True'})
}
}

complete_apps = ['lugar']
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# encoding: utf-8
import datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models

class Migration(SchemaMigration):

def forwards(self, orm):

# Adding field 'Municipio.latitud'
db.add_column('lugar_municipio', 'latitud', self.gf('django.db.models.fields.DecimalField')(null=True, max_digits=8, decimal_places=5, blank=True), keep_default=False)

# Adding field 'Municipio.longitud'
db.add_column('lugar_municipio', 'longitud', self.gf('django.db.models.fields.DecimalField')(null=True, max_digits=8, decimal_places=5, blank=True), keep_default=False)


def backwards(self, orm):

# Deleting field 'Municipio.latitud'
db.delete_column('lugar_municipio', 'latitud')

# Deleting field 'Municipio.longitud'
db.delete_column('lugar_municipio', 'longitud')


models = {
'lugar.departamento': {
'Meta': {'object_name': 'Departamento'},
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'nombre': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'db_index': 'True'})
},
'lugar.municipio': {
'Meta': {'object_name': 'Municipio'},
'departamento': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['lugar.Departamento']"}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'latitud': ('django.db.models.fields.DecimalField', [], {'null': 'True', 'max_digits': '8', 'decimal_places': '5', 'blank': 'True'}),
'longitud': ('django.db.models.fields.DecimalField', [], {'null': 'True', 'max_digits': '8', 'decimal_places': '5', 'blank': 'True'}),
'nombre': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'db_index': 'True'})
}
}

complete_apps = ['lugar']
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# encoding: utf-8
import datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models

class Migration(SchemaMigration):

def forwards(self, orm):

# Adding field 'Municipio.extension'
db.add_column('lugar_municipio', 'extension', self.gf('django.db.models.fields.DecimalField')(null=True, max_digits=10, decimal_places=2, blank=True), keep_default=False)

# Changing field 'Municipio.id'
db.alter_column('lugar_municipio', 'id', self.gf('django.db.models.fields.IntegerField')(primary_key=True))

# Adding field 'Departamento.extension'
db.add_column('lugar_departamento', 'extension', self.gf('django.db.models.fields.DecimalField')(null=True, max_digits=10, decimal_places=2), keep_default=False)

# Changing field 'Departamento.id'
db.alter_column('lugar_departamento', 'id', self.gf('django.db.models.fields.IntegerField')(primary_key=True))


def backwards(self, orm):

# Deleting field 'Municipio.extension'
db.delete_column('lugar_municipio', 'extension')

# Changing field 'Municipio.id'
db.alter_column('lugar_municipio', 'id', self.gf('django.db.models.fields.AutoField')(primary_key=True))

# Deleting field 'Departamento.extension'
db.delete_column('lugar_departamento', 'extension')

# Changing field 'Departamento.id'
db.alter_column('lugar_departamento', 'id', self.gf('django.db.models.fields.AutoField')(primary_key=True))


models = {
'lugar.departamento': {
'Meta': {'object_name': 'Departamento'},
'extension': ('django.db.models.fields.DecimalField', [], {'null': 'True', 'max_digits': '10', 'decimal_places': '2'}),
'id': ('django.db.models.fields.IntegerField', [], {'primary_key': 'True'}),
'nombre': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'db_index': 'True'})
},
'lugar.municipio': {
'Meta': {'object_name': 'Municipio'},
'departamento': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['lugar.Departamento']"}),
'extension': ('django.db.models.fields.DecimalField', [], {'null': 'True', 'max_digits': '10', 'decimal_places': '2', 'blank': 'True'}),
'id': ('django.db.models.fields.IntegerField', [], {'primary_key': 'True'}),
'latitud': ('django.db.models.fields.DecimalField', [], {'null': 'True', 'max_digits': '8', 'decimal_places': '5', 'blank': 'True'}),
'longitud': ('django.db.models.fields.DecimalField', [], {'null': 'True', 'max_digits': '8', 'decimal_places': '5', 'blank': 'True'}),
'nombre': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}),
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'unique': 'True', 'null': 'True', 'db_index': 'True'})
}
}

complete_apps = ['lugar']
Empty file added lugar/migrations/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a06300e

Please sign in to comment.