Page MenuHomeGRNET

20151024162823_create_hosts_table.rb
No OneTemporary

File Metadata

Created
Mon, May 19, 12:41 AM

20151024162823_create_hosts_table.rb

class CreateHostsTable < ActiveRecord::Migration
def change
create_table :hosts do |t|
t.binary :name, limit: 255, null: false
t.binary :fqdn, limit: 255, null: false
t.integer :port, null: false
t.integer :file_retention, null: false
t.integer :job_retention, null: false
t.timestamps
end
add_index :hosts, :name, unique: true, length: { name: 128}, using: :btree
end
end

Event Timeline