gluster-web-interface/db/migrate/20160920111650_create_nodes.rb

14 lines
251 B
Ruby
Raw Normal View History

2016-09-20 12:14:13 +00:00
class CreateNodes < ActiveRecord::Migration
def change
create_table :nodes do |t|
t.string :host_name
t.string :host_ip
t.string :user_name
t.string :user_password
t.timestamps null: false
end
end
end