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

14 lines
264 B
Ruby
Raw Normal View History

2017-10-22 06:30:44 +00:00
class CreateNodes < ActiveRecord::Migration[5.1]
2016-09-20 12:14:13 +00:00
def change
create_table :nodes do |t|
t.string :host_name
2016-10-03 04:24:08 +00:00
t.string :host_ip, unique: true
2016-09-20 12:14:13 +00:00
t.string :user_name
t.string :user_password
2017-10-22 06:30:44 +00:00
2016-09-20 12:14:13 +00:00
t.timestamps null: false
end
end
end