mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-23 04:33:11 +00:00
28 lines
936 B
Python
28 lines
936 B
Python
# Generated by Django 2.2 on 2019-04-17 06:46
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Page',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('url', models.URLField()),
|
|
('timestamp', models.CharField(default=None, max_length=32, null=True)),
|
|
('title', models.CharField(default=None, max_length=128, null=True)),
|
|
('tags', models.CharField(default=None, max_length=256, null=True)),
|
|
('added', models.DateTimeField(auto_now_add=True)),
|
|
('bookmarked', models.DateTimeField()),
|
|
('updated', models.DateTimeField(default=None, null=True)),
|
|
],
|
|
),
|
|
]
|