about summary refs log tree commit diff stats
path: root/db/migrate/20231020195330_make_blog_votable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20231020195330_make_blog_votable.rb')
-rw-r--r--db/migrate/20231020195330_make_blog_votable.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20231020195330_make_blog_votable.rb b/db/migrate/20231020195330_make_blog_votable.rb new file mode 100644 index 0000000..4d1e42a --- /dev/null +++ b/db/migrate/20231020195330_make_blog_votable.rb
@@ -0,0 +1,8 @@
1class MakeBlogVotable < ActiveRecord::Migration[7.0]
2 def change
3 change_table :blogs do |t|
4 t.integer :upvotes, default: 0, null: false
5 t.integer :downvotes, default: 0, null: false
6 end
7 end
8end