0010_rename_useralert.py 475 B

12345678910111213141516
  1. # Generated by Django 4.1.3 on 2022-11-29 15:48
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ("projects", "0009_alter_project_id_alter_projectcounter_id_and_more"),
  6. ]
  7. operations = [
  8. migrations.RunSQL(
  9. "ALTER TABLE users_userprojectalert RENAME TO projects_userprojectalert;",
  10. "ALTER TABLE projects_userprojectalert RENAME TO users_userprojectalert;",
  11. )
  12. ]