12 lines
276 B
Ruby
12 lines
276 B
Ruby
|
class CreateWatchedWords < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :watched_words do |t|
|
||
|
t.string :word, null: false
|
||
|
t.integer :action, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
add_index :watched_words, [:action, :word], unique: true
|
||
|
end
|
||
|
end
|