mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
12 lines
293 B
Ruby
12 lines
293 B
Ruby
class CreateWatchedWords < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :watched_words do |t|
|
|
t.string :word, null: false
|
|
t.integer :action, null: false
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :watched_words, [:action, :word], unique: true
|
|
end
|
|
end
|