mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 14:16:06 +01:00
14 lines
307 B
Ruby
14 lines
307 B
Ruby
class CreateSmiles < ActiveRecord::Migration
|
|
def change
|
|
create_table :smiles do |t|
|
|
t.integer :user_id
|
|
t.integer :answer_id
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :smiles, :user_id
|
|
add_index :smiles, :answer_id
|
|
add_index :smiles, [:user_id, :answer_id], unique: true
|
|
end
|
|
end
|