This commit is contained in:
bee0005
2016-09-20 12:14:13 +00:00
parent 37538b5112
commit e9d72c6fc5
9 changed files with 204 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
class CreateNodes < ActiveRecord::Migration
def change
create_table :nodes do |t|
t.string :host_name
t.string :host_ip
t.integer :host_port
t.string :user_name
t.string :user_password
t.timestamps null: false
end
end
end