class CreateUser01s < ActiveRecord::Migration[5.1]
def change
create_table :user01s do |t|
t.string :name
t.string :email
t.string :password
t.string :image
t.text :comment
t.timestamps end
end
end
mysql> show tables;
+----------------------+
| Tables_in_camp |
+----------------------+
| ar_internal_metadata |
| categories |
| follows |
| post_comments |
| post_images |
| post_likes |
| posts |
| products |
| schema_migrations |
| user01s |
| user_likes |
| users |
+----------------------+
12 rows in set (0.00 sec)
mysql> show colums from user01s;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'colums from user01s' at line 1
mysql>
railsにてuser01sモデルクラスを作成し、マイグレートしましたが、
SQL側へ正しく情報が反映されませんでした。
他のテーブル名にも同様のエラーが発生しています。
こちらの都合で上記エラー発生前に「rails db:reset」コマンドでDBをリセットしましたが、
このコマンドが原因でしょうか。
対処方法が分からなくて非常に苦慮しています。
申し訳ございませんが、ご教示をお願いできますでしょうか。
よろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー