Skip to content
This repository has been archived by the owner on Feb 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #37 from IlianIliev/adding-initial-migration
Browse files Browse the repository at this point in the history
Adding initial migration
  • Loading branch information
artragis authored Nov 13, 2017
2 parents 840e5a3 + 5a08737 commit 863a523
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions corsheaders/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2017-01-18 21:36
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

initial = True

dependencies = [
]

operations = [
migrations.CreateModel(
name='CorsModel',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('cors', models.CharField(max_length=255)),
],
),
]
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

from corsheaders import __version__
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='django-cors-middleware',
Expand All @@ -11,7 +11,7 @@
author='Zeste de Savoir',
author_email='[email protected]',
url='https://github.com/zestedesavoir/django-cors-middleware',
packages=['corsheaders'],
packages=find_packages(),
license='MIT License',
keywords='django cors middleware rest api',
platforms=['any'],
Expand Down

0 comments on commit 863a523

Please sign in to comment.