Added 'admins' database table

This commit is contained in:
Christoph Haas 2013-08-06 22:33:03 +02:00
parent c096d461b9
commit 3c03445f45

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20130726224319) do
ActiveRecord::Schema.define(version: 20130727112955) do
create_table "admins", force: true do |t|
t.string "username", limit: 20
@ -63,6 +63,8 @@ ActiveRecord::Schema.define(version: 20130726224319) do
t.boolean "markedfordelete"
t.string "delete_reason", limit: 100
t.string "description", limit: 40
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "screenshots", ["id", "approved"], name: "id_approved", using: :btree