rosa-build/db/migrate/20140414195426_create_node_...

13 lines
293 B
Ruby
Raw Normal View History

2014-04-14 22:32:25 +01:00
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