mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
12 lines
221 B
Ruby
12 lines
221 B
Ruby
class CreateMessageTemplates < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :message_templates do |t|
|
|
t.string :type
|
|
t.text :sys_notice
|
|
t.text :email
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|