Delete the old zulip.com "referrals" system.

This system hasn't been in active use for several years, and had some 
problems with it's design.  So it makes sense to just remove it to declutter
the codebase.

Fixes #5655.
This commit is contained in:
Vaida
2017-07-07 23:59:18 +02:00
committed by Tim Abbott
parent fcd944447e
commit d5517bae36
24 changed files with 34 additions and 432 deletions

View File

@@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-07-07 08:34
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('zerver', '0087_remove_old_scheduled_jobs'),
]
operations = [
migrations.RemoveField(
model_name='referral',
name='user_profile',
),
migrations.RemoveField(
model_name='userprofile',
name='invites_granted',
),
migrations.RemoveField(
model_name='userprofile',
name='invites_used',
),
migrations.DeleteModel(
name='Referral',
),
]