obsolete.computer

multistream/frontend/migrations/0009_settings_alter_channel_last_saved.py

File Type: text/x-script.python

# Generated by Django 4.0.6 on 2022-07-31 00:02

from django.db import migrations, models
import django.utils.timezone


class Migration(migrations.Migration):

    dependencies = [
        ('frontend', '0008_channel_last_saved'),
    ]

    operations = [
        migrations.CreateModel(
            name='Settings',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('oauth_access_token', models.CharField(blank=True, max_length=255)),
                ('oauth_access_token_expiration', models.IntegerField(blank=True, max_length=255)),
                ('oauth_access_token_timestamp', models.DateTimeField(blank=True, default=django.utils.timezone.now)),
            ],
            options={
                'abstract': False,
            },
        ),
        migrations.AlterField(
            model_name='channel',
            name='last_saved',
            field=models.DateTimeField(blank=True, default=django.utils.timezone.now),
        ),
    ]

Meta