Retrospring/db/migrate/20150504004931_create_comme...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
563 B
Ruby
Raw Normal View History

2023-10-19 16:37:34 -07:00
# frozen_string_literal: true
class CreateCommentSmiles < ActiveRecord::Migration[4.2]
def change
create_table :comment_smiles do |t|
t.integer :user_id
t.integer :comment_id
t.timestamps null: false
end
add_index :comment_smiles, :user_id
add_index :comment_smiles, :comment_id
2023-10-19 16:37:34 -07:00
add_index :comment_smiles, %i[user_id comment_id], unique: true
add_column :users, :comment_smiled_count, :integer, default: 0, null: false
add_column :comments, :smile_count, :integer, default: 0, null: false
end
end