mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
10 lines
281 B
Ruby
10 lines
281 B
Ruby
class AddCategoryUsers < ActiveRecord::Migration[4.2]
|
|
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
|