Skip to Content
Enterprise Rails
book

Enterprise Rails

by Dan Chak
October 2008
Intermediate to advanced
352 pages
10h 30m
English
O'Reilly Media, Inc.
Content preview from Enterprise Rails

Refactor Steps

  1. Find a table in which a column takes on one of a set of values, but those values are not foreign key references into another table, as in Figure 6-8.

  2. Create a new table in which the rows represent the set of values from 1 and any other columns that were dependent on this value, rather than the original table’s primary key (Figure 6-9).

    We can create the table shown earlier with the following SQL statement (note that it is up to you to account for any data inconsistencies caused by improper normalization):

    insert into colors(name, hex)
    select distinct color, hex from my_table;
  3. Create a column in the original table for the foreign key reference, then populate it. After doing so, delete the original columns (Figure 6-10).

    alter table my_table add column color_id integer;
    update my_table
       set color_id = (
         select id
           from colors
          where m.color = c.name
            and m.hex = c.hex
       );
    alter table my_table drop column color;
    alter table my_table drop column hex;
    alter table my_table add constraint my_table_color_id_fkey
      (color_id) references colors(id);
    alter table my_table alter color_set not null;
  4. Create a model class for the new table. Add association references appropriately. The new model will have a has_many association to the original model class, and the original class will have a belongs_to relationship with the new model class.

A table not in third normal form

Figure 6-8. A table not in third normal form

Figure 6-9. The ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Advanced Rails

Advanced Rails

Brad Ediger
Rails Crash Course

Rails Crash Course

Anthony Lewis
Ajax on Rails

Ajax on Rails

Scott Raymond

Publisher Resources

ISBN: 9780596515201Errata Page