Add pickups role

This commit is contained in:
Patrick Gansterer 2017-11-15 23:58:11 +01:00
parent 4c41a99fde
commit ac11ba1cc1
14 changed files with 42 additions and 15 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20171110000000) do
ActiveRecord::Schema.define(version: 20171111000000) do
create_table "article_categories", force: :cascade do |t|
t.string "name", limit: 255, default: "", null: false
@ -170,6 +170,7 @@ ActiveRecord::Schema.define(version: 20171110000000) do
t.boolean "role_invoices", default: false, null: false
t.date "break_start"
t.date "break_end"
t.boolean "role_pickups", default: false, null: false
end
add_index "groups", ["name"], name: "index_groups_on_name", unique: true, using: :btree