美文网首页
2018-08-08

2018-08-08

作者: 陈华萍 | 来源:发表于2018-08-17 14:33 被阅读0次

建立索引的两种写法

第一种:

def change

    create_table :booksdo|t|

        t.belongs_to :author, index: true

        t.datetime :published_at

        t.timestamps

      end

end

第二种:

  def change

    create_table :accounts do |t|

      t.integer :supplier_id

      t.string  :account_number

      t.timestamps

    end

    add_index :accounts, :supplier_id

  end

案例2

多态关联

classPicture < ApplicationRecord

  belongs_to :imageable, polymorphic: true

end

classEmployee < ApplicationRecord

  has_many :pictures, as: :imageable

end

classProduct < ApplicationRecord

  has_many :pictures, as: :imageable

end

写法1:

  def change

    create_table :pictures do |t|

      t.string  :name

      t.integer :imageable_id

      t.string  :imageable_type

      t.timestamps

    end

    add_index :pictures, [:imageable_type, :imageable_id]

  end

写法2:

  def change

    create_table :pictures do |t|

      t.string :name

      t.references :imageable, polymorphic: true, index: true

      t.timestamps

    end

  end

自连接:

model:

class Employee < ApplicationRecord

  has_many :subordinates, class_name: "Employee",

                          foreign_key: "manager_id"

  belongs_to :manager, class_name: "Employee"

end

迁移:

class CreateEmployees < ActiveRecord::Migration[5.0]

  defchange

    create_table :employeesdo|t|

      t.references :manager, index: true

      t.timestamps

    end

  end

end

相关文章

  • 【随笔】2018-08-08据说,今天适合分手

    今日,2018-08-08; 据说,今天适合分手; 可是, 还没有恋爱; 怎么分手?

  • 感恩日记

    感恩日记 双小宝 2018-08-08 00:03 · 字数 870 · 阅读 0 · 日记本 2018.8.7 ...

  • 夏天

    竹山不爱吃山竹 2018-08-08 19:57 · 字数 2112 · 阅读 0 · 日记本 每年的夏天爸...

  • Android自动化测试

    记录 2018-08-08 该东西只是记录,方便你我他 UiDevice 此类介绍: 打开某个APP 工具介绍 u...

  • PRESS.one,你会用了吗

    [PRESSone拓荒者] 2018-08-08 以下为原作者正文。 PRESS.one的大名很多人都知道,...

  • 手把手教你使用PRESS.one

    [PRESSone拓荒者] 2018-08-08 编者按:不到半年时间,Press.one已经两次重大升级,...

  • 艺像标画画

    周三晚上6:45 周日晚上5:30 2018-08-08晚上6:45。画了一个小雨伞。 西瓜,树叶。

  • 《致良知——责善》

    时间:2018-08-08 君子理应规劝别人向善,这就是“责善”。责善的重点在于“忠告而善道之”,尽心劝诫...

  • 2018-08-08

    2018-08-08 事件:今天听群里分享,觉察自己有份自责。 感受:内疚,自责。 想法:我应该勇敢的去做,去担当...

  • sftp远程与本地文件传输

    writed at 2018-08-08 1.名词解释 ①SSH:是一个安全外壳协议, SSH理解:传统的网络服务...

网友评论

      本文标题:2018-08-08

      本文链接:https://www.haomeiwen.com/subject/prtfbftx.html