source: music/migrations/0001_initial.py

Last change on this file was d7662b5, checked in by ManuelTrajcev <manueltrajcev7@…>, 3 weeks ago

init

  • Property mode set to 100644
File size: 507 bytes
RevLine 
[d7662b5]1# Generated by Django 5.1.3 on 2025-04-24 11:17
2
3from django.db import migrations, models
4
5
6class Migration(migrations.Migration):
7
8 initial = True
9
10 dependencies = []
11
12 operations = [
13 migrations.CreateModel(
14 name="PlaylistTrack",
15 fields=[
16 ("id", models.AutoField(primary_key=True, serialize=False)),
17 ],
18 options={
19 "db_table": "playlist_track",
20 "managed": False,
21 },
22 ),
23 ]
Note: See TracBrowser for help on using the repository browser.