mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
14 lines
294 B
Ruby
14 lines
294 B
Ruby
class CreateActionTemplates < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :action_templates do |t|
|
|
t.string :name
|
|
t.string :description
|
|
t.string :img
|
|
t.string :sort_no, default: 0
|
|
t.text :json
|
|
t.text :yaml
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|