0
如何使用終端/命令行更改Rails表中的值? 例如我有一個表「用戶」與一個場管理員設置爲「假」,我想通過終端將其改變爲真 - 如下:通過終端更改Rails Sqlite中字段的值通過終端
update users set admin = true where email = [email protected]
如何使用終端/命令行更改Rails表中的值? 例如我有一個表「用戶」與一個場管理員設置爲「假」,我想通過終端將其改變爲真 - 如下:通過終端更改Rails Sqlite中字段的值通過終端
update users set admin = true where email = [email protected]
假設導軌4:
user = User.find_by email: "[email protected]"
user.update!(admin: true)
使用rails c
:
user = User.where(email: "[email protected]").first
user.update_coluns(admin: true)
,或者例如以倍數的條目:
User.where(email: "[email protected]").update_all(admin: true)