How do I define an ARRAY column in a Sequel Postgresql migration?
Asked Answered
Z

1

10

I am creating a Sequel migration to create a new table in my PostgreSQL database. I want to define a String array column, which PostgreSQL supports.

My migration looks like this:

create_table :venues do
  primary_key :id

  String      :reference                                , :null => false
  String      :name                                     , :null => false
  String      :description                              , :null => false
  String[]    :type                                     , :null => false

  DateTime    :created_at                               , :null => false
  DateTime    :updated_at                               , :null => false
end

How can I define something like text[] in my migration?

Zootomy answered 16/7, 2013 at 13:30 Comment(0)
B
22

You just use the column method and specify the type as a string: column :type, "text[]"

Babylonia answered 17/7, 2013 at 16:21 Comment(1)
Look here for the syntax sequel.jeremyevans.net/rdoc/files/doc/…Buddhology

© 2022 - 2024 — McMap. All rights reserved.