зеркало из https://github.com/mozilla/treeherder.git
Bug 1720181 - remove remaining SETA code
This commit is contained in:
Родитель
c1ce3d89cd
Коммит
ee99c98843
|
@ -6,7 +6,7 @@ export DATABASE_URL=${DATABASE_URL:-mysql://root@127.0.0.1:3306/treeherder}
|
|||
# Only execute if we're using the Mysql container
|
||||
if [ "${DATABASE_URL}" == "mysql://root@mysql/treeherder" ] ||
|
||||
[ "${DATABASE_URL}" == "mysql://root@127.0.0.1:3306/treeherder" ]; then
|
||||
# Initialize migrations and SETA
|
||||
# Initialize migrations
|
||||
echo '-----> Running Django migrations and loading reference data'
|
||||
./manage.py migrate --noinput
|
||||
./manage.py load_initial_data
|
||||
|
|
|
@ -77,7 +77,6 @@ INSTALLED_APPS = [
|
|||
'treeherder.log_parser',
|
||||
'treeherder.etl',
|
||||
'treeherder.perf',
|
||||
'treeherder.seta',
|
||||
'treeherder.intermittents_commenter',
|
||||
'treeherder.changelog',
|
||||
]
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-01-26 15:42
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = []
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='JobPriority',
|
||||
fields=[
|
||||
(
|
||||
'id',
|
||||
models.AutoField(
|
||||
auto_created=True, primary_key=True, serialize=False, verbose_name='ID'
|
||||
),
|
||||
),
|
||||
('testtype', models.CharField(max_length=128)),
|
||||
('buildsystem', models.CharField(max_length=64)),
|
||||
('buildtype', models.CharField(max_length=64)),
|
||||
('platform', models.CharField(max_length=64)),
|
||||
('priority', models.IntegerField()),
|
||||
('expiration_date', models.DateTimeField(null=True)),
|
||||
],
|
||||
),
|
||||
]
|
|
@ -1,16 +0,0 @@
|
|||
# Generated by Django 3.1.13 on 2022-02-03 17:43
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('seta', '0001_squashed_0002_remove_task_request_and_jp_timeout'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='JobPriority',
|
||||
),
|
||||
]
|
Загрузка…
Ссылка в новой задаче