2017-10-31 14:57:26 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-10-11 16:06
from __future__ import unicode_literals
2019-08-19 21:53:34 +00:00
from django . db import migrations
from django . db import models
2017-10-31 14:57:26 +00:00
import apps . map . validators
class Migration ( migrations . Migration ) :
2019-08-19 21:37:32 +00:00
dependencies = [ ( " map " , " 0009_auto_20171007_1544 " ) ]
2017-10-31 14:57:26 +00:00
operations = [
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " completion_year " ,
field = models . IntegerField (
blank = True ,
choices = [
( 1977 , 1977 ) ,
( 1978 , 1978 ) ,
( 1979 , 1979 ) ,
( 1980 , 1980 ) ,
( 1981 , 1981 ) ,
( 1982 , 1982 ) ,
( 1983 , 1983 ) ,
( 1984 , 1984 ) ,
( 1985 , 1985 ) ,
( 1986 , 1986 ) ,
( 1987 , 1987 ) ,
( 1988 , 1988 ) ,
( 1989 , 1989 ) ,
( 1990 , 1990 ) ,
( 1991 , 1991 ) ,
( 1992 , 1992 ) ,
( 1993 , 1993 ) ,
( 1994 , 1994 ) ,
( 1995 , 1995 ) ,
( 1996 , 1996 ) ,
( 1997 , 1997 ) ,
( 1998 , 1998 ) ,
( 1999 , 1999 ) ,
( 2000 , 2000 ) ,
( 2001 , 2001 ) ,
( 2002 , 2002 ) ,
( 2003 , 2003 ) ,
( 2004 , 2004 ) ,
( 2005 , 2005 ) ,
( 2006 , 2006 ) ,
( 2007 , 2007 ) ,
( 2008 , 2008 ) ,
( 2009 , 2009 ) ,
( 2010 , 2010 ) ,
( 2011 , 2011 ) ,
( 2012 , 2012 ) ,
( 2013 , 2013 ) ,
( 2014 , 2014 ) ,
( 2015 , 2015 ) ,
( 2016 , 2016 ) ,
( 2017 , 2017 ) ,
( 2018 , 2018 ) ,
( 2019 , 2019 ) ,
( 2020 , 2020 ) ,
( 2021 , 2021 ) ,
( 2022 , 2022 ) ,
( 2023 , 2023 ) ,
( 2024 , 2024 ) ,
( 2025 , 2025 ) ,
( 2026 , 2026 ) ,
( 2027 , 2027 ) ,
( 2028 , 2028 ) ,
( 2029 , 2029 ) ,
( 2030 , 2030 ) ,
( 2031 , 2031 ) ,
( 2032 , 2032 ) ,
( 2033 , 2033 ) ,
( 2034 , 2034 ) ,
( 2035 , 2035 ) ,
( 2036 , 2036 ) ,
( 2037 , 2037 ) ,
( 2038 , 2038 ) ,
( 2039 , 2039 ) ,
( 2040 , 2040 ) ,
( 2041 , 2041 ) ,
( 2042 , 2042 ) ,
( 2043 , 2043 ) ,
( 2044 , 2044 ) ,
( 2045 , 2045 ) ,
( 2046 , 2046 ) ,
( 2047 , 2047 ) ,
( 2048 , 2048 ) ,
( 2049 , 2049 ) ,
( 2050 , 2050 ) ,
( 2051 , 2051 ) ,
( 2052 , 2052 ) ,
( 2053 , 2053 ) ,
( 2054 , 2054 ) ,
( 2055 , 2055 ) ,
( 2056 , 2056 ) ,
( 2057 , 2057 ) ,
] ,
default = None ,
help_text = " Select the year the project was completed. If the project hasn ' t finished, select the projected completion year. " ,
null = True ,
verbose_name = " Completion year " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " direct_comms " ,
field = models . TextField (
default = None ,
help_text = " Add any reports of direct communication between community members and representatives of developers/companies/investors. " ,
max_length = 500 ,
null = True ,
verbose_name = " Reports of direct communications " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " energy_customers " ,
field = models . CharField (
blank = True ,
default = None ,
help_text = " List any wholesale energy customers that take energy from the development. E.g. ' national grids ' or private energy suppliers. " ,
max_length = 120 ,
null = True ,
verbose_name = " Energy consumers " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " financial_institutions " ,
field = models . CharField (
blank = True ,
default = None ,
help_text = " List banks and other financial institutions that have or are considering extending loans or guarantees to the project. Separate with a comma. " ,
max_length = 120 ,
null = True ,
verbose_name = " Financial institutions " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " image_caption " ,
field = models . CharField (
default = None , max_length = 500 , null = True , verbose_name = " Image caption "
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " image_credit " ,
field = models . CharField (
default = None , max_length = 200 , null = True , verbose_name = " Image credit(s) "
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " media_coverage_independent " ,
field = models . TextField (
default = None ,
help_text = " Provide any links to grassroots/independent media coverage. " ,
max_length = 500 ,
null = True ,
verbose_name = " Independent grassroots reports " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " media_coverage_mainstream " ,
field = models . TextField (
default = None ,
help_text = " Provide any links to mainstream media coverage. " ,
max_length = 500 ,
null = True ,
verbose_name = " Links to media reports " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " project_owners " ,
field = models . CharField (
blank = True ,
default = None ,
help_text = " List companies or organisations that own the project and/or facilities. Separate with a comma. " ,
max_length = 120 ,
null = True ,
verbose_name = " Project and facility owners " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " shareholders " ,
field = models . CharField (
blank = True ,
default = None ,
help_text = " List shareholders of the project owners you ' ve just listed. Separate with a comma. " ,
max_length = 120 ,
null = True ,
verbose_name = " Shareholders of the project owners " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " social_media_links " ,
field = models . TextField (
blank = True ,
default = None ,
help_text = " Add any links to social media accounts directly relating to the project. " ,
max_length = 500 ,
null = True ,
verbose_name = " Social media links " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " start_year " ,
field = models . IntegerField (
blank = True ,
choices = [
( 1977 , 1977 ) ,
( 1978 , 1978 ) ,
( 1979 , 1979 ) ,
( 1980 , 1980 ) ,
( 1981 , 1981 ) ,
( 1982 , 1982 ) ,
( 1983 , 1983 ) ,
( 1984 , 1984 ) ,
( 1985 , 1985 ) ,
( 1986 , 1986 ) ,
( 1987 , 1987 ) ,
( 1988 , 1988 ) ,
( 1989 , 1989 ) ,
( 1990 , 1990 ) ,
( 1991 , 1991 ) ,
( 1992 , 1992 ) ,
( 1993 , 1993 ) ,
( 1994 , 1994 ) ,
( 1995 , 1995 ) ,
( 1996 , 1996 ) ,
( 1997 , 1997 ) ,
( 1998 , 1998 ) ,
( 1999 , 1999 ) ,
( 2000 , 2000 ) ,
( 2001 , 2001 ) ,
( 2002 , 2002 ) ,
( 2003 , 2003 ) ,
( 2004 , 2004 ) ,
( 2005 , 2005 ) ,
( 2006 , 2006 ) ,
( 2007 , 2007 ) ,
( 2008 , 2008 ) ,
( 2009 , 2009 ) ,
( 2010 , 2010 ) ,
( 2011 , 2011 ) ,
( 2012 , 2012 ) ,
( 2013 , 2013 ) ,
( 2014 , 2014 ) ,
( 2015 , 2015 ) ,
( 2016 , 2016 ) ,
( 2017 , 2017 ) ,
( 2018 , 2018 ) ,
( 2019 , 2019 ) ,
( 2020 , 2020 ) ,
( 2021 , 2021 ) ,
( 2022 , 2022 ) ,
( 2023 , 2023 ) ,
( 2024 , 2024 ) ,
( 2025 , 2025 ) ,
( 2026 , 2026 ) ,
( 2027 , 2027 ) ,
( 2028 , 2028 ) ,
( 2029 , 2029 ) ,
( 2030 , 2030 ) ,
( 2031 , 2031 ) ,
( 2032 , 2032 ) ,
( 2033 , 2033 ) ,
( 2034 , 2034 ) ,
( 2035 , 2035 ) ,
( 2036 , 2036 ) ,
( 2037 , 2037 ) ,
( 2038 , 2038 ) ,
( 2039 , 2039 ) ,
( 2040 , 2040 ) ,
( 2041 , 2041 ) ,
( 2042 , 2042 ) ,
( 2043 , 2043 ) ,
( 2044 , 2044 ) ,
( 2045 , 2045 ) ,
( 2046 , 2046 ) ,
( 2047 , 2047 ) ,
( 2048 , 2048 ) ,
( 2049 , 2049 ) ,
( 2050 , 2050 ) ,
( 2051 , 2051 ) ,
( 2052 , 2052 ) ,
( 2053 , 2053 ) ,
( 2054 , 2054 ) ,
( 2055 , 2055 ) ,
( 2056 , 2056 ) ,
( 2057 , 2057 ) ,
] ,
default = None ,
help_text = " Select the year the project was started. If the project hasn ' t begun, select the projected start year. " ,
null = True ,
verbose_name = " Start year " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " video_caption " ,
field = models . CharField (
default = None , max_length = 500 , null = True , verbose_name = " Video caption "
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " video_credit " ,
field = models . CharField (
default = None , max_length = 500 , null = True , verbose_name = " Video credit(s) "
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AlterField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " affects_indigenous " ,
field = models . BooleanField (
help_text = " Does the project affect indigenous communities? " ,
verbose_name = " Affects indigenous people? " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AlterField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " community_voices " ,
field = models . TextField (
help_text = " Add any direct quotes from members of the community that relate to this project " ,
verbose_name = " Community Voices " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AlterField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " date_created " ,
2017-10-31 14:57:26 +00:00
field = models . DateTimeField ( auto_now_add = True ) ,
) ,
migrations . AlterField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " land_ownership_details " ,
field = models . CharField (
blank = True ,
help_text = " Please specify details about land ownership if you chose ' other ' " ,
max_length = 256 ,
null = True ,
verbose_name = " Land ownership details " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
migrations . AlterField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " video " ,
field = models . URLField (
help_text = " Copy the URL to a related YouTube™ video that relates to the case study. " ,
max_length = 43 ,
validators = [ apps . map . validators . YoutubeURLValidator ( ) ] ,
verbose_name = " YouTube Video " ,
) ,
2017-10-31 14:57:26 +00:00
) ,
]