13 lines
293 B
Ruby
13 lines
293 B
Ruby
|
class CreateNodeInstructions < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :node_instructions do |t|
|
||
|
t.integer :user_id, null: false
|
||
|
t.text :encrypted_instruction, null: false
|
||
|
t.text :output
|
||
|
t.string :status
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|