Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/core/main/ar-migrations/004_create_commands.rb
1154 views
1
class CreateCommands < ActiveRecord::Migration[6.0]
2
def change
3
create_table :commands do |t|
4
t.references :command_module
5
t.references :hooked_browser
6
t.text :data
7
t.datetime :creationdate
8
t.text :label
9
t.boolean :instructions_sent, default: false
10
end
11
end
12
end
13
14