You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class CreateUserTemplateMessageSettings < ActiveRecord::Migration[5.2]
- def change
- # 用户对系统通知的设置
- create_table :user_template_message_settings do |t|
- t.references :user
- t.text :notification_body
- t.text :email_body
-
- t.timestamps
- end
- end
- end
|