diff --git a/app/models/server.rb b/app/models/server.rb
index aa0339f..129f684 100644
--- a/app/models/server.rb
+++ b/app/models/server.rb
@@ -8,7 +8,6 @@
# dns :string(255)
# ip :string(255)
# port :string(255)
-# rcon :string(255)
# password :string(255)
# irc :string(255)
# user_id :integer
@@ -44,7 +43,7 @@ class Server < ActiveRecord::Base
attr_protected :id, :user_id, :updated_at, :created_at, :map, :players, :maxplayers, :ping, :version
validates_length_of [:name, :dns,], :in => 1..30
- validates_length_of [:rcon, :password, :irc], :maximum => 30, :allow_blank => true
+ validates_length_of [:password, :irc], :maximum => 30, :allow_blank => true
validates_length_of :description, :maximum => 255, :allow_blank => true
validates_format_of :ip, :with => /\A[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\z/
validates_format_of :port, :with => /\A[0-9]{1,5}\z/
@@ -81,7 +80,6 @@ class Server < ActiveRecord::Base
non_versioned_columns << 'dns'
non_versioned_columns << 'ip'
non_versioned_columns << 'port'
- non_versioned_columns << 'rcon'
non_versioned_columns << 'password'
non_versioned_columns << 'irc'
non_versioned_columns << 'user_id'
diff --git a/app/views/servers/_form.html.erb b/app/views/servers/_form.html.erb
index 97c0403..ab8bcdb 100644
--- a/app/views/servers/_form.html.erb
+++ b/app/views/servers/_form.html.erb
@@ -16,10 +16,6 @@
-
- <%= f.label :rcon %>
- <%= f.text_field :rcon %>
-
<%= f.label :password %>
<%= f.text_field :password %>
diff --git a/db/migrate/20150518162749_remove_rcon_from_servers.rb b/db/migrate/20150518162749_remove_rcon_from_servers.rb
new file mode 100644
index 0000000..400c2e3
--- /dev/null
+++ b/db/migrate/20150518162749_remove_rcon_from_servers.rb
@@ -0,0 +1,9 @@
+class RemoveRconFromServers < ActiveRecord::Migration
+ def up
+ remove_column :servers, :rcon
+ end
+
+ def down
+ add_column :servers, :rcon, :string
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 0839005..e0aad41 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20141010193221) do
+ActiveRecord::Schema.define(:version => 20150518162749) do
create_table "admin_requests", :force => true do |t|
t.string "addr"
@@ -722,7 +722,6 @@ ActiveRecord::Schema.define(:version => 20141010193221) do
t.string "dns"
t.string "ip"
t.string "port"
- t.string "rcon"
t.string "password"
t.string "irc"
t.integer "user_id"
diff --git a/spec/models/server_spec.rb b/spec/models/server_spec.rb
index 19374e8..a4ec8cf 100644
--- a/spec/models/server_spec.rb
+++ b/spec/models/server_spec.rb
@@ -8,7 +8,6 @@
# dns :string(255)
# ip :string(255)
# port :string(255)
-# rcon :string(255)
# password :string(255)
# irc :string(255)
# user_id :integer