class CreateCodeLinks

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20190827180753_create_code_links.rb, line 3
def change
  create_table :code_links do |t|
    t.text :link
    t.references :code_link_type, null: false, foreign_key: true
    t.text :description

    t.timestamps
  end
end