2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateWatchedWords < ActiveRecord::Migration[4.2]
|
2017-06-28 16:56:44 -04:00
|
|
|
def change
|
|
|
|
create_table :watched_words do |t|
|
|
|
|
t.string :word, null: false
|
|
|
|
t.integer :action, null: false
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2017-06-28 16:56:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :watched_words, %i[action word], unique: true
|
|
|
|
end
|
|
|
|
end
|