Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道如何使用 lobos 迁移来更改表(添加列)吗?我找不到这方面的文档——任何帮助将不胜感激。
lobos_migrationsLobos 将根据您数据库上的表运行所有待处理的迁移。
lobos_migrations
修改现有表的语法正在使用,您可以在此处alter找到一些文档。
alter
对于添加新列,这是一个示例迁移:
(defmigration add-column-test (up [] (alter :add (table :your_table (integer :test_column)))) (down []))
您还可以在测试源代码alter中找到其他选项,例如列重命名