Skip to content

Commit 6550c3b

Browse files
committed
adding new django resource for migrations
1 parent f89a578 commit 6550c3b

File tree

6 files changed

+21
-1
lines changed

6 files changed

+21
-1
lines changed

all.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1531,6 +1531,11 @@ <h2>Django ORM resources</h2>
15311531
explains why South was not directly integrated into Django, how migrations
15321532
are built and shows how backwards migrations work.</p>
15331533
</li>
1534+
<li>
1535+
<p><a href="http://www.rkblog.rk.edu.pl/w/p/squashing-and-optimizing-migrations-django/">Squashing and optimizing migrations in Django</a>
1536+
shows a simple example with code for how to use the migrations integrated
1537+
into Django 1.7.</p>
1538+
</li>
15341539
</ul>
15351540
<h2>Static and media files</h2>
15361541
<p>Deploying and handling static and media files can be confusing for new
@@ -5912,6 +5917,8 @@ <h1>Change Log</h1>
59125917
<h2>2015</h2>
59135918
<h3>May</h3>
59145919
<ul>
5920+
<li>Added new <a href="/django.html">Django</a> resources, especially around migrations
5921+
in Django 1.7+.</li>
59155922
<li>Worked on making <a href="/why-use-python.html">Why Use Python?</a> page specific to
59165923
that topic now that the <a href="/enterprise-python.html">Enterprise Python</a> page
59175924
contains enterprise-y info.</li>

change-log.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ <h1>Change Log</h1>
4242
<h2>2015</h2>
4343
<h3>May</h3>
4444
<ul>
45+
<li>Added new <a href="/django.html">Django</a> resources, especially around migrations
46+
in Django 1.7+.</li>
4547
<li>Worked on making <a href="/why-use-python.html">Why Use Python?</a> page specific to
4648
that topic now that the <a href="/enterprise-python.html">Enterprise Python</a> page
4749
contains enterprise-y info.</li>

django.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,11 @@ <h2>Django ORM resources</h2>
356356
explains why South was not directly integrated into Django, how migrations
357357
are built and shows how backwards migrations work.</p>
358358
</li>
359+
<li>
360+
<p><a href="http://www.rkblog.rk.edu.pl/w/p/squashing-and-optimizing-migrations-django/">Squashing and optimizing migrations in Django</a>
361+
shows a simple example with code for how to use the migrations integrated
362+
into Django 1.7.</p>
363+
</li>
359364
</ul>
360365
<h2>Static and media files</h2>
361366
<p>Deploying and handling static and media files can be confusing for new

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-05-24T13:30:57Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-05-25T06:32:56Z</updated></feed>

source/content/pages/04-web-development/02-django.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,10 @@ existing framework.
294294
explains why South was not directly integrated into Django, how migrations
295295
are built and shows how backwards migrations work.
296296

297+
* [Squashing and optimizing migrations in Django](http://www.rkblog.rk.edu.pl/w/p/squashing-and-optimizing-migrations-django/)
298+
shows a simple example with code for how to use the migrations integrated
299+
into Django 1.7.
300+
297301

298302
## Static and media files
299303
Deploying and handling static and media files can be confusing for new

source/content/pages/13-meta/02-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ the
1414

1515
## 2015
1616
### May
17+
* Added new [Django](/django.html) resources, especially around migrations
18+
in Django 1.7+.
1719
* Worked on making [Why Use Python?](/why-use-python.html) page specific to
1820
that topic now that the [Enterprise Python](/enterprise-python.html) page
1921
contains enterprise-y info.

0 commit comments

Comments
 (0)