Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

[wip] Search all documents #658

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-08-13 19:06
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

replaces = [('information_pages', '0004_auto_20180813_2050'), ('information_pages', '0005_auto_20180813_2102')]

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is a squashed migration although that's not necessary because both 0004 and 0005 didn't exist before. please create a plain new migration instead.

dependencies = [
('information_pages', '0003_auto_20180201_2301'),
]

operations = [
migrations.AlterModelOptions(
name='informationdocument',
options={'base_manager_name': 'objects', 'permissions': (('view_informationdocument', 'User/Group is allowed to view that document'),), 'verbose_name': 'Information document', 'verbose_name_plural': 'Information documents'},
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-08-13 19:04
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

replaces = [('minutes', '0010_auto_20180813_2050'), ('minutes', '0011_auto_20180813_2102')]

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

dependencies = [
('minutes', '0009_auto_20180201_2301'),
]

operations = [
migrations.AlterModelOptions(
name='minutesdocument',
options={'base_manager_name': 'objects', 'permissions': (('view_minutesdocument', 'User/Group is allowed to view those minutes'),), 'verbose_name': 'Minutes', 'verbose_name_plural': 'Minutes'},
),
]
19 changes: 19 additions & 0 deletions _1327/polls/migrations/0007_auto_20180813_2050.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.8 on 2018-08-13 18:50
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('polls', '0006_poll_show_results_immediately'),
]

operations = [
migrations.AlterModelOptions(
name='poll',
options={'permissions': (('view_poll', 'User/Group is allowed to view that poll'), ('vote_poll', 'User/Group is allowed to participate (vote) in that poll')), 'verbose_name': 'Poll', 'verbose_name_plural': 'Polls'},
),
]