discourse/db/migrate/20230515103515_create_watch...

12 lines
225 B
Ruby

# frozen_string_literal: true
class CreateWatchedWordGroups < ActiveRecord::Migration[7.0]
def change
create_table :watched_word_groups do |t|
t.integer :action, null: false
t.timestamps
end
end
end