mirror of https://github.com/zulip/zulip.git
26 lines
702 B
Python
26 lines
702 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.23 on 2019-08-23 22:24
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zerver', '0240_usermessage_migrate_bigint_id_into_id'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RunSQL("ALTER TABLE zerver_usermessage DROP COLUMN id_old;"),
|
||
|
migrations.RemoveField(
|
||
|
model_name='archivedusermessage',
|
||
|
name='bigint_id',
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='archivedusermessage',
|
||
|
name='id',
|
||
|
field=models.BigAutoField(primary_key=True, serialize=False),
|
||
|
),
|
||
|
]
|