mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
10 lines
276 B
Ruby
10 lines
276 B
Ruby
class AddCategoryUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :category_users do |t|
|
|
t.column :category_id, :integer, null: false
|
|
t.column :user_id, :integer, null: false
|
|
t.column :notification_level, :integer, null: false
|
|
end
|
|
end
|
|
end
|