Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/core/main/ar-migrations/008_create_executions.rb
1154 views
1
class CreateExecutions < ActiveRecord::Migration[6.0]
2
def change
3
create_table :executions do |t|
4
t.text :session_id
5
t.integer :mod_count
6
t.integer :mod_successful
7
t.text :mod_body
8
t.text :exec_time
9
t.text :rule_token
10
t.boolean :is_sent
11
t.integer :rule_id
12
end
13
end
14
end
15
16