You've already forked code_examples_server
mirror of
https://github.com/AdaCore/code_examples_server.git
synced 2026-02-12 12:45:18 -08:00
22 lines
493 B
Python
22 lines
493 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2017-09-19 16:04
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0001_squashed_0004_example_original_dir'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='example',
|
|
name='main',
|
|
field=models.TextField(default=''),
|
|
preserve_default=False,
|
|
),
|
|
]
|