diff options
author | luxagraf <sng@luxagraf.net> | 2019-07-04 08:17:40 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-07-04 08:17:40 -0500 |
commit | 9251b1c1149b3d6abd779ab8b8c9e709ec09bdbf (patch) | |
tree | 770154a25806cefbf5c75bd9e55757a6cbbcc749 /app/jrnl/migrations | |
parent | 829cf6908dff98915c9c56a8cfa191f25c41bd98 (diff) |
added guides to main admin
Diffstat (limited to 'app/jrnl/migrations')
-rw-r--r-- | app/jrnl/migrations/0042_auto_20190412_1805.py | 24 | ||||
-rw-r--r-- | app/jrnl/migrations/0043_auto_20190704_0903.py | 21 |
2 files changed, 45 insertions, 0 deletions
diff --git a/app/jrnl/migrations/0042_auto_20190412_1805.py b/app/jrnl/migrations/0042_auto_20190412_1805.py new file mode 100644 index 0000000..71c0d51 --- /dev/null +++ b/app/jrnl/migrations/0042_auto_20190412_1805.py @@ -0,0 +1,24 @@ +# Generated by Django 2.1.7 on 2019-04-12 18:05 + +import django.contrib.postgres.indexes +import django.contrib.postgres.search +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('jrnl', '0041_auto_20190315_2240'), + ] + + operations = [ + migrations.AddField( + model_name='entry', + name='search_document', + field=django.contrib.postgres.search.SearchVectorField(null=True), + ), + migrations.AddIndex( + model_name='entry', + index=django.contrib.postgres.indexes.GinIndex(fields=['search_document'], name='jrnl_entry_search__a7a10f_gin'), + ), + ] diff --git a/app/jrnl/migrations/0043_auto_20190704_0903.py b/app/jrnl/migrations/0043_auto_20190704_0903.py new file mode 100644 index 0000000..758499a --- /dev/null +++ b/app/jrnl/migrations/0043_auto_20190704_0903.py @@ -0,0 +1,21 @@ +# Generated by Django 2.1.7 on 2019-07-04 09:03 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('jrnl', '0042_auto_20190412_1805'), + ] + + operations = [ + migrations.RemoveIndex( + model_name='entry', + name='jrnl_entry_search__a7a10f_gin', + ), + migrations.RemoveField( + model_name='entry', + name='search_document', + ), + ] |