Skip to content

Commit 530fb37

Browse files
committed
Redo migration for MaintenanceMode
1 parent 1577c60 commit 530fb37

2 files changed

Lines changed: 20 additions & 38 deletions

File tree

osf/migrations/0039_maintenancemode.py

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Generated by Django 4.2.26 on 2026-05-22 14:57
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('osf', '0039_merge_20260427_1359'),
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name='MaintenanceMode',
15+
fields=[
16+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
17+
('maintenance_mode', models.BooleanField(default=False)),
18+
],
19+
),
20+
]

0 commit comments

Comments
 (0)