-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added ltipiitool model (#32790)
* feat: added ltipiitool model * feat: added ltipiitool model * feat: created ltipiitool model * chore: squashed ltipiitool mirgation files for agreements app. * chore: fixed migration files
- Loading branch information
1 parent
b97007e
commit 0bde216
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
openedx/core/djangoapps/agreements/migrations/0002_ltipiitool.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.2.20 on 2023-08-01 14:06 | ||
|
||
from django.db import migrations, models | ||
import opaque_keys.edx.django.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('agreements', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='LTIPIITool', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('course_key', opaque_keys.edx.django.models.CourseKeyField(db_index=True, max_length=255, unique=True)), | ||
('lti_tools', models.JSONField()), | ||
('lti_tools_hash', models.IntegerField()), | ||
], | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters