Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_TypeWriterMonkeyCSCIMoment
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jose Leonardo J. Sacamos III
widget_TypeWriterMonkeyCSCIMoment
Commits
0c110cb0
Commit
0c110cb0
authored
Mar 23, 2022
by
Chino Tesoro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bugs and removed the reactions class from forums (for real this time)
parent
ca4279b4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
6 deletions
+17
-6
db.sqlite3
widget_TypeWriterMonkeyCSCIMoment/db.sqlite3
+0
-0
models.cpython-310.pyc
...MonkeyCSCIMoment/forum/__pycache__/models.cpython-310.pyc
+0
-0
0003_delete_reaction.py
...MonkeyCSCIMoment/forum/migrations/0003_delete_reaction.py
+16
-0
0003_delete_reaction.cpython-310.pyc
...grations/__pycache__/0003_delete_reaction.cpython-310.pyc
+0
-0
models.py
widget_TypeWriterMonkeyCSCIMoment/forum/models.py
+1
-6
No files found.
widget_TypeWriterMonkeyCSCIMoment/db.sqlite3
View file @
0c110cb0
No preview for this file type
widget_TypeWriterMonkeyCSCIMoment/forum/__pycache__/models.cpython-310.pyc
View file @
0c110cb0
No preview for this file type
widget_TypeWriterMonkeyCSCIMoment/forum/migrations/0003_delete_reaction.py
0 → 100644
View file @
0c110cb0
# Generated by Django 4.0.3 on 2022-03-23 12:25
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'forum'
,
'0002_alter_post_post_body_alter_post_post_title_and_more'
),
]
operations
=
[
migrations
.
DeleteModel
(
name
=
'Reaction'
,
),
]
widget_TypeWriterMonkeyCSCIMoment/forum/migrations/__pycache__/0003_delete_reaction.cpython-310.pyc
0 → 100644
View file @
0c110cb0
File added
widget_TypeWriterMonkeyCSCIMoment/forum/models.py
View file @
0c110cb0
...
...
@@ -5,9 +5,4 @@ class Post (models.Model):
post_title
=
models
.
CharField
(
max_length
=
99999
)
post_body
=
models
.
CharField
(
max_length
=
99999
)
pub_date
=
models
.
DateTimeField
(
"date published"
)
class
Reaction
(
models
.
Model
):
post
=
models
.
ForeignKey
(
Post
,
on_delete
=
models
.
CASCADE
)
reaction_name
=
models
.
CharField
(
max_length
=
99999
)
tally
=
models
.
IntegerField
(
default
=
0
)
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment