NAME
DBIO::Oracle::Diff::Table - Diff operations for Oracle tables
VERSION
version 0.900000
DESCRIPTION
Represents a table-level diff operation in Oracle: CREATE TABLE or DROP TABLE. create ops capture the target columns and foreign keys so as_sql can emit the full inline definition.
ATTRIBUTES
table_name
The bare table name.
table_info
Hashref of table metadata from introspection (kind, schema, etc.).
columns
ArrayRef of column hashrefs for new tables (populated when action is create), so that as_sql can emit a complete CREATE TABLE with all column definitions rather than an empty shell.
foreign_keys
ArrayRef of FK hashrefs for new tables (populated when action is create), inlined in the CREATE TABLE.
METHODS
diff
my @ops = DBIO::Oracle::Diff::Table->diff(
$source_tables, $target_tables,
$target_columns, $target_fks,
);
as_sql
summary
AUTHOR
DBIO & DBIx::Class Authors
COPYRIGHT AND LICENSE
Copyright (C) 2026 DBIO Authors Portions Copyright (C) 2005-2025 DBIx::Class Authors Based on DBIx::Class, heavily modified.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.