8

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[]移行のようなものをどのように定義できますか?

4

1 に答える 1

19

column メソッドを使用して、型を文字列として指定するだけです。column :type, "text[]"

于 2013-07-17T16:21:40.903 に答える