質問編集履歴

3

user.rbのコードを付け足した。

2022/01/09 04:19

投稿

yasshun1229
yasshun1229

スコア8

test CHANGED
File without changes
test CHANGED
@@ -130,7 +130,43 @@
130
130
 
131
131
 
132
132
 
133
+ user.rb
134
+
135
+ ```ここに言語を入力
136
+
137
+ class User < ApplicationRecord
138
+
139
+ before_save { self.email.downcase! }
140
+
141
+
142
+
143
+ validates :name, presence: true, length: { maximum: 50 }
144
+
145
+ validates :address, presence: true, length: { maximum: 50 }
146
+
147
+ validates :email, presence: true, length: { maximum: 100 },
148
+
149
+ format: { with: /\A[\w+\-.]+@[a-z\d\-.]+.[a-z]+\z/i },
150
+
151
+ uniqueness: { case_sensitive: false }
152
+
133
- ここにより詳細な情報を記載してください。
153
+ has_secure_password
154
+
155
+
156
+
157
+ has_many :posts, :dependent => :destroy
158
+
159
+ # 退会ユーザーに紐づくプロジェクトも削除する
160
+
161
+ has_many :projects, :dependent => :destroy
162
+
163
+
164
+
165
+ has_many :projects
166
+
167
+ end
168
+
169
+ ```
134
170
 
135
171
 
136
172
 

2

アカウント昨日➔アカウント削除機能

2022/01/09 04:19

投稿

yasshun1229
yasshun1229

スコア8

test CHANGED
File without changes
test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
 
6
6
 
7
- その中で、ユーザのアカウント昨日を実装しようとしたら、このようなエラーが出ました。
7
+ その中で、ユーザのアカウント削除機能を実装しようとしたら、このようなエラーが出ました。
8
8
 
9
9
 
10
10
 

1

初心者マークをつけた。

2022/01/05 12:21

投稿

yasshun1229
yasshun1229

スコア8

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
- Ruby on Rails で、オリジナルアプリを作っています。
3
+ Ruby on Rails で、オリジナルアプリを作っています。
4
4
 
5
5
 
6
6