Add Boards

This commit is contained in:
riggraz
2019-08-22 17:09:13 +02:00
parent ecc0d1cb27
commit 33ba4771d7
16 changed files with 193 additions and 4 deletions

View File

@@ -10,11 +10,19 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2019_08_19_131723) do
ActiveRecord::Schema.define(version: 2019_08_22_141109) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "boards", force: :cascade do |t|
t.string "name"
t.text "description"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "index_boards_on_name", unique: true
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false