mpeltriaux
8ff3cb9adc
* adds migrations for storing OAuthToken * adds OAuthToken model * adds OAuthToken admin * adds user migration for Fkey relation to OAuthToken
27 lines
847 B
Python
27 lines
847 B
Python
# Generated by Django 5.0.4 on 2024-04-30 07:20
|
|
|
|
import uuid
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0002_alter_apiusertoken_valid_until'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='OAuthToken',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('access_token', models.CharField(db_comment='OAuth access token', max_length=255)),
|
|
('refresh_token', models.CharField(db_comment='OAuth refresh token', max_length=255)),
|
|
('expires_on', models.DateTimeField(db_comment='When the token will be expired')),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|