mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 07:48:12 +08:00
12 lines
225 B
Ruby
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
|