Hi,

I wanted to suggest the ability to create multi-column primary keys in
migrations.

The syntax can look like this:

class AddModelUsers < Sequel::Migration

  def up
    create_table :users do
      primary_key do
        varchar :first_name
        varchar :last_name
        timestamp :birthdate
      end
      integer :age
      ...

    end
  end

end
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to