-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds the migrations based on the Domains model. Signed-off-by: Francisco Trivino <[email protected]>
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.1.5 on 2023-01-13 12:02 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Domain', | ||
fields=[ | ||
('name', models.CharField(max_length=80, primary_key=True, serialize=False)), | ||
('integration_domain_url', models.CharField(max_length=80)), | ||
('client_id', models.CharField(max_length=20)), | ||
('client_secret', models.CharField(max_length=20)), | ||
('description', models.TextField(blank=True)), | ||
('id_provider', models.CharField(choices=[('ipa', 'FreeIPA Provider'), ('ad', 'LDAP AD Provider'), ('ldap', 'LDAP Provider')], default='ipa', max_length=5)), | ||
('user_extra_attrs', models.CharField(max_length=100)), | ||
('ldap_tls_cacert', models.CharField(max_length=100)), | ||
], | ||
), | ||
] |
Empty file.