discourse/db/migrate/20170628152322_create_watch...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
320 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateWatchedWords < ActiveRecord::Migration[4.2]
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
end
add_index :watched_words, %i[action word], unique: true
end
end