mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
9 lines
281 B
Ruby
9 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
|