文件名称:activerecord-view:带有 ActiveRecord 的 SQL 视图
文件大小:36KB
文件格式:ZIP
更新时间:2024-06-30 13:54:47
Ruby
活动记录::查看 集成 ActiveRecord 以方便在迁移中轻松使用视图。 安装 将此行添加到应用程序的 Gemfile 中: gem 'activerecord-view' 然后执行: $ bundle 或者自己安装: $ gem install activerecord-view 用法 要在数据库迁移中创建视图: def change # You can provide a string create_view :admins , 'SELECT * FROM users WHERE role = "admin"' # Or an object that responds #to_sql users = User . arel_table create_view :authors , users . project ( '*' ) . whe
【文件预览】:
activerecord-view-master
----.gitignore(144B)
----README.md(4KB)
----bin()
--------console(275B)
--------setup(210B)
----Gemfile(102B)
----.rspec(53B)
----CODE_OF_CONDUCT.md(1KB)
----spec()
--------support()
--------activerecord()
--------internal()
--------spec_helper.rb(708B)
----LICENSE.txt(1KB)
----.travis.yml(265B)
----lib()
--------activerecord()
--------activerecord-view.rb(28B)
----activerecord-view.gemspec(1KB)
----Rakefile(184B)