mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 18:06:04 +01:00
15 lines
307 B
Ruby
15 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
|