Files
gitlink-forgeplus/db/migrate/20240408010233_create_action_templates.rb
2024-05-16 09:42:48 +08:00

14 lines
295 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.integer :sort_no, default: 0
t.text :json
t.text :yaml
t.timestamps
end
end
end