Skip to content

Commit

Permalink
Merge pull request django-ses#95 from ticosax/migrations
Browse files Browse the repository at this point in the history
Add initial migration for django_ses app
  • Loading branch information
pcraciunoiu committed May 10, 2016
2 parents 2e15aaf + 6bfea2d commit bd37f4d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions django_ses/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.4 on 2016-04-27 12:52
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

initial = True

dependencies = [
]

operations = [
migrations.CreateModel(
name='SESStat',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('date', models.DateField(db_index=True, unique=True)),
('delivery_attempts', models.PositiveIntegerField()),
('bounces', models.PositiveIntegerField()),
('complaints', models.PositiveIntegerField()),
('rejects', models.PositiveIntegerField()),
],
options={
'verbose_name': 'SES Stat',
'ordering': ['-date'],
},
),
]
Empty file.

0 comments on commit bd37f4d

Please sign in to comment.