2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File 'lib/generators/command_proposal/install/templates/install_command_proposal.rb', line 2
def change
create_table :command_proposal_tasks do |t|
t.text :name
t.text :friendly_id
t.text :description
t.integer :session_type, default: 0 t.datetime :last_executed_at
t.timestamps
end
create_table :command_proposal_iterations do |t|
t.belongs_to :task
t.text :args
t.text :code
t.text :result
t.integer :status, default: 0 t.belongs_to :requester
t.belongs_to :approver
t.datetime :approved_at
t.datetime :started_at
t.datetime :completed_at
t.datetime :stopped_at
t.timestamps
end
create_table :command_proposal_comments do |t|
t.belongs_to :iteration
t.integer :line_number
t.belongs_to :author
t.text :body
t.timestamps
end
end
|