PostgreSQL データベースに新しいテーブルを作成するために Sequel 移行を作成しています。PostgreSQL がサポートする文字列配列列を定義したいと考えています。
私の移行は次のようになります。
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
text[]
移行のようなものをどのように定義できますか?