Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Added migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcrees committed Jul 6, 2020
1 parent 1cd6ce0 commit 448ff48
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test_page/migrations/0002_testpage_permissions_json.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.6 on 2020-07-06 21:42

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('test_page', '0001_initial'),
]

operations = [
migrations.AddField(
model_name='testpage',
name='permissions_json',
field=models.TextField(blank=True, null=True),
),
]

0 comments on commit 448ff48

Please sign in to comment.