summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Fick <logaldeveloper@protonmail.com>2017-10-12 20:18:09 -0400
committerLogan Fick <logaldeveloper@protonmail.com>2017-10-12 20:18:09 -0400
commitda2e66d0b87f11c24a9946c33906c90c90e1f14b (patch)
tree5f47b77c7e1d0bffa86c57cb83bb973463c77da4
parent611c52223a5d7ebea1dbe73d46b061229f6918e1 (diff)
Removed skype_public from schema and seeds.
-rw-r--r--db/schema.rb1
-rw-r--r--db/seeds.rb1
2 files changed, 0 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5849cf5..2dbffc8 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -135,7 +135,6 @@ ActiveRecord::Schema.define(version: 20170703003647) do
t.text "about", limit: 65535
t.string "last_ip", limit: 255
t.string "skype", limit: 255
- t.boolean "skype_public", default: false
t.string "youtube", limit: 255
t.string "youtube_channelname", limit: 255
t.string "twitter", limit: 255
diff --git a/db/seeds.rb b/db/seeds.rb
index 926d7b2..f6b731f 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -33,7 +33,6 @@ deleted_user = User.create!(
role: Role.get(:disabled),
badge: Badge.get(:none),
skype: "echo123",
- skype_public: true,
last_ip: "0.0.0.0",
confirmed: true,
last_seen: Time.utc(0).to_datetime,