文件名称:activerecord-mti:ActiveRecord MTI
文件大小:7KB
文件格式:ZIP
更新时间:2024-05-19 02:09:58
Ruby
ActiveRecord MTI(多个表继承) 这个gem允许您创建由两个表分配属性的模型。 安装 添加到您的Gemfile: gem 'activerecord-mti' 用法 考虑以下数据库模式: create_table :subjects do | t | t . string :name end create_table :roles do | t | t . integer :subject_id # MTI fields t . integer :role_id t . integer :role_type end create_table :employees do | t | t . string :appointment end create_table :clients do | t | t . string :address en
【文件预览】:
activerecord-mti-master
----Gemfile(136B)
----Gemfile.lock(2KB)
----spec()
--------delegate_missing_to_spec.rb(542B)
--------spec_helper.rb(188B)
--------mti_spec.rb(3KB)
----activerecord-mti.gemspec(626B)
----.gitignore(25B)
----lib()
--------delegate_missing_to.rb(1KB)
--------activerecord-mti.rb(148B)
--------mti.rb(4KB)
----README.md(1KB)