Method: Sequel::Postgres::DatabaseMethods#create_table
- Defined in:
- lib/sequel/adapters/shared/postgres.rb
permalink #create_table(name, options = OPTS, &block) ⇒ Object
Support partitions of tables using the :partition_of option.
462 463 464 465 466 467 468 469 |
# File 'lib/sequel/adapters/shared/postgres.rb', line 462 def create_table(name, =OPTS, &block) if [:partition_of] create_partition_of_table_from_generator(name, CreatePartitionOfTableGenerator.new(&block), ) return end super end |