0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-05 20:29:55 +08:00
discourse/db/migrate/20170628152322_create_watched_words.rb
2023-01-09 11:59:41 +00:00

13 lines
320 B
Ruby
Vendored

# 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
t.timestamps null: false
end
add_index :watched_words, %i[action word], unique: true
end
end