Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
Settings model migration
Browse files Browse the repository at this point in the history
  • Loading branch information
dob9601 committed Mar 9, 2018
1 parent 05717fd commit b7db1d7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions cAdmin/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Generated by Django 2.0 on 2018-03-08 23:38

from django.db import migrations, models


class Migration(migrations.Migration):

initial = True

dependencies = [
]

operations = [
migrations.CreateModel(
name='Settings',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('github_integrated', models.BooleanField(default=False)),
('profile_allow_biography', models.BooleanField(default=True)),
('profile_allow_name_changes', models.BooleanField(default=False)),
('profile_allow_username_changes', models.BooleanField(default=False)),
('profile_allow_change_requests', models.BooleanField(default=True)),
('users_show_completed_tasks', models.BooleanField(default=True)),
('users_show_email', models.BooleanField(default=True)),
('users_show_online', models.BooleanField(default=True)),
('tasks_show_xp_bar', models.BooleanField(default=True)),
],
),
]

0 comments on commit b7db1d7

Please sign in to comment.