Compare commits
3 Commits
a1f3de2e7a
...
f728a2e9cf
Author | SHA1 | Date |
---|---|---|
|
f728a2e9cf | |
|
7ff8075d64 | |
|
c4d64e40a5 |
|
@ -50,8 +50,6 @@ class DiaryEntriesController < ApplicationController
|
||||||
:work_stress_level,
|
:work_stress_level,
|
||||||
:life_stress_level,
|
:life_stress_level,
|
||||||
:sleep_quality_level,
|
:sleep_quality_level,
|
||||||
# exercise
|
|
||||||
# food
|
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
class Food < ApplicationRecord
|
|
||||||
validates :name, presence: true
|
|
||||||
end
|
|
|
@ -1,9 +0,0 @@
|
||||||
class CreateFoods < ActiveRecord::Migration[7.1]
|
|
||||||
def change
|
|
||||||
create_table :foods do |t|
|
|
||||||
t.text :name, null: false
|
|
||||||
|
|
||||||
t.timestamps
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
class DropFoods < ActiveRecord::Migration[7.1]
|
||||||
|
def change
|
||||||
|
drop_table :foods
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,6 @@
|
||||||
|
class RenameAtOnExercises < ActiveRecord::Migration[7.1]
|
||||||
|
def change
|
||||||
|
remove_column :exercises, :at
|
||||||
|
add_column :exercises, :occurred_at, :datetime
|
||||||
|
end
|
||||||
|
end
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema[7.1].define(version: 2023_12_29_121659) do
|
ActiveRecord::Schema[7.1].define(version: 2023_12_29_143820) do
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
|
||||||
|
@ -87,21 +87,15 @@ ActiveRecord::Schema[7.1].define(version: 2023_12_29_121659) do
|
||||||
|
|
||||||
create_table "exercises", force: :cascade do |t|
|
create_table "exercises", force: :cascade do |t|
|
||||||
t.bigint "exercise_type_id", null: false
|
t.bigint "exercise_type_id", null: false
|
||||||
t.time "at"
|
|
||||||
t.float "amount", null: false
|
t.float "amount", null: false
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.bigint "diary_entry_id", null: false
|
t.bigint "diary_entry_id", null: false
|
||||||
|
t.datetime "occurred_at"
|
||||||
t.index ["diary_entry_id"], name: "index_exercises_on_diary_entry_id"
|
t.index ["diary_entry_id"], name: "index_exercises_on_diary_entry_id"
|
||||||
t.index ["exercise_type_id"], name: "index_exercises_on_exercise_type_id"
|
t.index ["exercise_type_id"], name: "index_exercises_on_exercise_type_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "foods", force: :cascade do |t|
|
|
||||||
t.text "name", null: false
|
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.datetime "updated_at", null: false
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table "microposts", force: :cascade do |t|
|
create_table "microposts", force: :cascade do |t|
|
||||||
t.bigint "user_id", null: false
|
t.bigint "user_id", null: false
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
one:
|
one:
|
||||||
exercise_type: running
|
exercise_type: running
|
||||||
at: 2023-12-29 11:41:45
|
occurred_at: 2023-12-29 11:41:45
|
||||||
amount: 5
|
amount: 5
|
||||||
diary_entry: one
|
diary_entry: one
|
||||||
|
|
||||||
two:
|
two:
|
||||||
exercise_type: cycling
|
exercise_type: cycling
|
||||||
at: 2023-12-29 11:41:45
|
occurred_at: 2023-12-29 11:41:45
|
||||||
amount: 10.5
|
amount: 10.5
|
||||||
diary_entry: two
|
diary_entry: two
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
one:
|
|
||||||
name: Pizza
|
|
||||||
|
|
||||||
two:
|
|
||||||
name: Banana
|
|
Loading…
Reference in New Issue