about summary refs log tree commit diff stats
path: root/db/migrate/20231020194529_create_votes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20231020194529_create_votes.rb')
-rw-r--r--db/migrate/20231020194529_create_votes.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20231020194529_create_votes.rb b/db/migrate/20231020194529_create_votes.rb new file mode 100644 index 0000000..947652b --- /dev/null +++ b/db/migrate/20231020194529_create_votes.rb
@@ -0,0 +1,11 @@
1class CreateVotes < ActiveRecord::Migration[7.0]
2 def change
3 create_table :votes do |t|
4 t.references :votable, polymorphic: true
5 t.integer :upvote
6 t.string :ip
7
8 t.timestamps
9 end
10 end
11end