##// END OF EJS Templates
Add rhodecode link
Add rhodecode link

File last commit:

r2123:be532800 default
r2149:0a18125a default
Show More
0071_syncsource.py
24 lines | 742 B | text/x-python | PythonLexer
neko259
Administration for sync sources. Now sync is available from the admin site instead of manual command line arguments. Still need to invoke sync_with_server by cron/timer
r2123 # Generated by Django 2.0.8 on 2018-08-05 17:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0070_auto_20171225_1149'),
]
operations = [
migrations.CreateModel(
name='SyncSource',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.TextField()),
('timestamp', models.DateTimeField(blank=True, null=True)),
('url', models.TextField()),
('tags', models.TextField(blank=True)),
('query_split_limit', models.IntegerField()),
],
),
]