WebKit Bugzilla
Attachment 369483 Details for
Bug 197729
: [ews-app] Add migrations file to repository
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197729-20190509065311.patch (text/plain), 3.97 KB, created by
Aakash Jain
on 2019-05-09 03:53:12 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-05-09 03:53:12 PDT
Size:
3.97 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 245127) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,12 @@ >+2019-05-09 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-app] Add migrations file to repository >+ https://bugs.webkit.org/show_bug.cgi?id=197729 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-app/ews/migrations/0001_initial.py: Added. Auto-generated by Django based on models' information. >+ > 2019-05-09 Xan López <xan@igalia.com> > > [CMake] Detect SSE2 at compile time >Index: Tools/BuildSlaveSupport/ews-app/ews/migrations/0001_initial.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-app/ews/migrations/0001_initial.py (nonexistent) >+++ Tools/BuildSlaveSupport/ews-app/ews/migrations/0001_initial.py (working copy) >@@ -0,0 +1,72 @@ >+# -*- coding: utf-8 -*- >+# Generated by Django 1.11.20 on 2019-03-26 20:30 >+from __future__ import unicode_literals >+ >+from django.db import migrations, models >+import django.db.models.deletion >+ >+ >+class Migration(migrations.Migration): >+ >+ initial = True >+ >+ dependencies = [ >+ ] >+ >+ operations = [ >+ migrations.CreateModel( >+ name='Build', >+ fields=[ >+ ('uid', models.TextField(primary_key=True, serialize=False)), >+ ('builder_id', models.IntegerField()), >+ ('builder_name', models.TextField()), >+ ('builder_display_name', models.TextField()), >+ ('number', models.IntegerField()), >+ ('result', models.IntegerField(blank=True, null=True)), >+ ('state_string', models.TextField()), >+ ('started_at', models.IntegerField(blank=True, null=True)), >+ ('complete_at', models.IntegerField(blank=True, null=True)), >+ ('created', models.DateTimeField(auto_now_add=True)), >+ ('modified', models.DateTimeField(auto_now=True)), >+ ], >+ ), >+ migrations.CreateModel( >+ name='BuildbotInstance', >+ fields=[ >+ ('instance_id', models.AutoField(primary_key=True, serialize=False)), >+ ('hostname', models.TextField()), >+ ('active', models.BooleanField(default=True)), >+ ('created', models.DateTimeField(auto_now_add=True)), >+ ('modified', models.DateTimeField(auto_now=True)), >+ ], >+ ), >+ migrations.CreateModel( >+ name='Patch', >+ fields=[ >+ ('patch_id', models.IntegerField(primary_key=True, serialize=False)), >+ ('bug_id', models.IntegerField()), >+ ('obsolete', models.BooleanField(default=False)), >+ ('sent_to_buildbot', models.BooleanField(default=False)), >+ ('created', models.DateTimeField(auto_now_add=True)), >+ ('modified', models.DateTimeField(auto_now=True)), >+ ], >+ ), >+ migrations.CreateModel( >+ name='Step', >+ fields=[ >+ ('uid', models.TextField(primary_key=True, serialize=False)), >+ ('result', models.IntegerField(blank=True, null=True)), >+ ('state_string', models.TextField()), >+ ('started_at', models.IntegerField(blank=True, null=True)), >+ ('complete_at', models.IntegerField(blank=True, null=True)), >+ ('created', models.DateTimeField(auto_now_add=True)), >+ ('modified', models.DateTimeField(auto_now=True)), >+ ('build_uid', models.ForeignKey(db_column='build_uid', db_constraint=False, on_delete=django.db.models.deletion.CASCADE, to='ews.Build')), >+ ], >+ ), >+ migrations.AddField( >+ model_name='build', >+ name='patch', >+ field=models.ForeignKey(db_constraint=False, on_delete=django.db.models.deletion.CASCADE, to='ews.Patch'), >+ ), >+ ]
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197729
: 369483 |
369486