Skip to content

Commit

Permalink
Merge pull request #42 from bartczak-pa/feature/technologies
Browse files Browse the repository at this point in the history
Feature/technologies
  • Loading branch information
bartczak-pa authored Sep 3, 2024
2 parents 4fcc517 + 4b65cd3 commit 1f8d5b4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions bartczak_tech/portfolio/migrations/0002_technology.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.13 on 2024-09-03 15:38

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('portfolio', '0001_initial'),
]

operations = [
migrations.CreateModel(
name='Technology',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=50, unique=True)),
],
options={
'verbose_name_plural': 'Technologies',
},
),
]

0 comments on commit 1f8d5b4

Please sign in to comment.