method
copy_table
rails latest stable - Class:
ActiveRecord::ConnectionAdapters::FirebirdAdapter
copy_table(from, to)private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/firebird_adapter.rb, line 640
def copy_table(from, to)
table_opts = {}
if pk = primary_key(from)
table_opts[:primary_key] = pk
else
table_opts[:id] = false
end
create_table(to, table_opts) do |table|
from_columns = columns(from).reject { |col| col.name == table_opts[:primary_key] }
from_columns.each do |column|
col_opts = [:limit, :default, :null].inject({}) { |opts, opt| opts.merge(opt => column.send(opt)) }
table.column column.name, column.type, col_opts
end
end
end