Renamed realname to name in users table

We do not necessarily need the real name. A nickname would be
sufficient.
This commit is contained in:
Christoph Haas 2017-04-05 16:42:10 +02:00
parent 20397c5411
commit 464fc0de95
2 changed files with 7 additions and 2 deletions

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20160812085722) do
ActiveRecord::Schema.define(version: 20170405144026) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -63,7 +63,7 @@ ActiveRecord::Schema.define(version: 20160812085722) do
end
create_table "users", force: :cascade do |t|
t.text "realname"
t.text "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "email", default: "", null: false