質問編集履歴
1
マイグレーションファイルのソースコードを追加しました。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Rails
|
1
|
+
【Rails PostgreSQL】PG::UndefinedTable: ERROR: relation "users" does not exist
|
test
CHANGED
@@ -86,6 +86,42 @@
|
|
86
86
|
|
87
87
|
|
88
88
|
|
89
|
+
```20200507090359_create_users.rb
|
90
|
+
|
91
|
+
class CreateUsers < ActiveRecord::Migration[5.2]
|
92
|
+
|
93
|
+
def change
|
94
|
+
|
95
|
+
create_table :users do |t|
|
96
|
+
|
97
|
+
t.text :name
|
98
|
+
|
99
|
+
t.text :user_id
|
100
|
+
|
101
|
+
t.text :email
|
102
|
+
|
103
|
+
t.text :password
|
104
|
+
|
105
|
+
t.integer :level
|
106
|
+
|
107
|
+
t.integer :contribution
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
t.timestamps
|
112
|
+
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
116
|
+
|
117
|
+
end
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
```
|
122
|
+
|
123
|
+
|
124
|
+
|
89
125
|
### 試したこと
|
90
126
|
|
91
127
|
1行目の
|