commit 99fd94580f95dcbfb77b73e2de846f76a5709ef9
Author: Sonny <sonnyba871@gmail.com>
Date: Sat Feb 15 21:45:16 2020 +0100
Use postgres password
As of https://gitlab.com/gitlab-com/support-forum/issues/5199
21 lines
592 B
Python
21 lines
592 B
Python
# Generated by Django 3.0.5 on 2020-06-03 20:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("accounts", "0009_auto_20200524_1218")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="reddit_access_token",
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="reddit_refresh_token",
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
]
|