Class | Sequel::Schema::AlterTableGenerator |
In: |
lib/sequel/database/schema_generator.rb
|
Parent: | Object |
Schema::AlterTableGenerator is an internal class that the user is not expected to instantiate directly. Instances are created by Database#alter_table. It is used to specify table alteration parameters. It takes a Database object and a block of operations to perform on the table, and gives the Database a table an array of operations, which the database uses to alter a table‘s description.
operations | [R] | An array of DDL operations to perform |
Add a column with the given name, type, and opts to the DDL for the table. See Generator#column for the available options.
# File lib/sequel/database/schema_generator.rb, line 216 216: def add_column(name, type, opts = {}) 217: @operations << {:op => :add_column, :name => name, :type => type}.merge(opts) 218: end
Add a constraint with the given name and args to the DDL for the table. See Generator#constraint.
# File lib/sequel/database/schema_generator.rb, line 222 222: def add_constraint(name, *args, &block) 223: @operations << {:op => :add_constraint, :name => name, :type => :check, \ 224: :constraint_type => :check, :check => block || args} 225: end
Add a foreign key with the given name and referencing the given table to the DDL for the table. See Generator#column for the available options.
You can also pass an array of column names for creating composite foreign keys. In this case, it will assume the columns exists and will only add the constraint.
NOTE: If you need to add a foreign key constraint to an existing column use the composite key syntax even if it is only one column.
# File lib/sequel/database/schema_generator.rb, line 241 241: def add_foreign_key(name, table, opts = {}) 242: return add_composite_foreign_key(name, table, opts) if name.is_a?(Array) 243: add_column(name, Integer, {:table=>table}.merge(opts)) 244: end
Add a full text index on the given columns to the DDL for the table. See Generator#index for available options.
# File lib/sequel/database/schema_generator.rb, line 248 248: def add_full_text_index(columns, opts = {}) 249: add_index(columns, {:type=>:full_text}.merge(opts)) 250: end
Add an index on the given columns to the DDL for the table. See Generator#index for available options.
# File lib/sequel/database/schema_generator.rb, line 254 254: def add_index(columns, opts = {}) 255: @operations << {:op => :add_index, :columns => Array(columns)}.merge(opts) 256: end
Add a primary key to the DDL for the table. See Generator#column for the available options.
# File lib/sequel/database/schema_generator.rb, line 260 260: def add_primary_key(name, opts = {}) 261: return add_composite_primary_key(name, opts) if name.is_a?(Array) 262: opts = @db.serial_primary_key_options.merge(opts) 263: add_column(name, opts.delete(:type), opts) 264: end
Add a spatial index on the given columns to the DDL for the table. See Generator#index for available options.
# File lib/sequel/database/schema_generator.rb, line 268 268: def add_spatial_index(columns, opts = {}) 269: add_index(columns, {:type=>:spatial}.merge(opts)) 270: end
# File lib/sequel/database/schema_generator.rb, line 227 227: def add_unique_constraint(columns, opts = {}) 228: @operations << {:op => :add_constraint, :type => :check, 229: :constraint_type => :unique, :columns => Array(columns)}.merge(opts) 230: end
Remove a column from the DDL for the table.
# File lib/sequel/database/schema_generator.rb, line 273 273: def drop_column(name) 274: @operations << {:op => :drop_column, :name => name} 275: end
Remove a constraint from the DDL for the table.
# File lib/sequel/database/schema_generator.rb, line 278 278: def drop_constraint(name) 279: @operations << {:op => :drop_constraint, :name => name} 280: end
Remove an index from the DDL for the table.
# File lib/sequel/database/schema_generator.rb, line 283 283: def drop_index(columns) 284: @operations << {:op => :drop_index, :columns => Array(columns)} 285: end
Modify a column‘s name in the DDL for the table.
# File lib/sequel/database/schema_generator.rb, line 288 288: def rename_column(name, new_name, opts = {}) 289: @operations << {:op => :rename_column, :name => name, :new_name => new_name}.merge(opts) 290: end
Modify a column‘s NOT NULL constraint.
# File lib/sequel/database/schema_generator.rb, line 303 303: def set_column_allow_null(name, allow_null) 304: @operations << {:op => :set_column_null, :name => name, :null => allow_null} 305: end
Modify a column‘s default value in the DDL for the table.
# File lib/sequel/database/schema_generator.rb, line 293 293: def set_column_default(name, default) 294: @operations << {:op => :set_column_default, :name => name, :default => default} 295: end