Metadata-Version: 2.4
Name: migracraft
Version: 1.0.0
Summary: Craft perfect PostgreSQL migrations from YAML schema definitions with multi-language entity generation
Home-page: https://github.com/carmonac/migracraft
Author: Carlos Merchán Carmona
Author-email: ccarmona.87@outlook.es
Project-URL: Bug Reports, https://github.com/carmonac/migracraft/issues
Project-URL: Source, https://github.com/carmonac/migracraft
Project-URL: Documentation, https://github.com/carmonac/migracraft#readme
Keywords: postgresql,database,migration,schema,yaml,generator,entity,sql,differential,craft
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Console
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML>=6.0.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: pytest-cov>=6.0.0; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=8.0.0; extra == "test"
Requires-Dist: pytest-cov>=6.0.0; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# MigraCraft 🛠️

**Craft perfect PostgreSQL migrations with precision and artistry.**

A powerful and flexible PostgreSQL schema migration tool that generates SQL migrations from YAML schema definitions and creates entity classes for multiple programming languages.

## ✨ Features

- **🎨 YAML Schema Definitions**: Define your database schema in elegant, readable YAML files
- **⚡ Differential Migrations**: Automatically detect changes and generate incremental migrations
- **🚀 Full Schema Migrations**: Generate complete schema migrations for initial setup
- **↩️ Rollback Support**: Create rollback migrations to undo changes safely
- **✅ Schema Validation**: Comprehensive validation of YAML schema definitions
- **🔗 Foreign Key Support**: Full support for foreign key constraints and relationships
- **📊 Index Management**: Create and manage database indexes efficiently
- **⚙️ PostgreSQL Functions**: Support for stored procedures and functions
- **🏗️ Entity Class Generation**: Generate entity classes in 7+ programming languages
- **🧩 Modular Architecture**: Clean, maintainable codebase split into logical modules

## 🚀 Quick Start

### Installation

```bash
# Install MigraCraft
pip install migracraft

# Or install from source
git clone https://github.com/yourusername/migracraft.git
cd migracraft
pip install -e .

# Or using requirements.txt
pip install -r requirements.txt
```

### Quick Commands

```bash
# Check version and see beautiful banner
migracraft --version
migracraft --banner

# Validate schemas
migracraft --validate

# Create first migration
migracraft --full --name "initial_setup"

# Generate TypeScript entities
migracraft --generate-entities typescript
```

## Quick Start

1. **Create schema files** in the `schemas/` directory:

```yaml
# schemas/users.yaml
tables:
  users:
    columns:
      id:
        type: SERIAL
        primary_key: true
      username:
        type: VARCHAR(50)
        not_null: true
        unique: true
      email:
        type: VARCHAR(255)
        not_null: true
        unique: true
      created_at:
        type: TIMESTAMP
        not_null: true
        default: CURRENT_TIMESTAMP
    indexes:
      - columns: [username]
        name: idx_users_username
        unique: true
```

2. **Validate your schemas**:

```bash
migracraft --validate
```

3. **Generate your first migration**:

```bash
migracraft --name "initial_setup" --full
```

4. **Make changes to schemas and generate differential migrations**:

```bash
migracraft --name "add_user_profiles"
```

5. **Create rollback migrations when needed**:

```bash
migracraft --rollback --name "undo_profiles"
```

## Project Structure

```
migracraft-project/
├── migrate.py                 # CLI entry point (also available as 'migracraft' command)
├── migracraft/                # Core package
│   ├── __init__.py           # Package initialization
│   ├── config.py             # Configuration constants
│   ├── exceptions.py         # Custom exceptions
│   ├── validator.py          # Schema validation
│   ├── sql_generator.py      # SQL generation
│   ├── entity_generator.py   # Multi-language entity generation
│   ├── migration_manager.py  # Migration management
│   ├── migracraft.py         # Package entry point
│   └── main.py              # Main tool class
├── schemas/                   # YAML schema definitions
├── migrations/               # Generated SQL migrations
├── entities/                 # Generated entity classes
├── tests/                    # Test files
├── setup.py                  # Package configuration
├── requirements.txt          # Dependencies
├── version.py               # Version management
├── dev.py                   # Development helper
└── README.md
```

## Usage

### Command Line Options

```bash
migracraft [OPTIONS]

Options:
  --version                 Show version information
  --banner                  Display MigraCraft banner
  --schemas-dir DIR         Directory containing YAML schema files (default: schemas)
  --migrations-dir DIR      Directory to store migration files (default: migrations)
  --name NAME              Optional name for the migration
  --full                   Generate full migration instead of differential
  --validate               Only validate schemas without creating migrations
  --rollback               Create a rollback migration to undo the last migration
  --generate-entities LANG Generate entity classes for specified language
  --entities-dir DIR       Directory to store generated entity files
  -h, --help               Show help message
```

### Schema Definition Format

#### Tables

```yaml
tables:
  table_name:
    columns:
      column_name:
        type: DATA_TYPE
        primary_key: true/false    # Optional
        not_null: true/false       # Optional
        unique: true/false         # Optional
        default: "value"           # Optional
    indexes:                       # Optional
      - columns: [col1, col2]
        name: index_name           # Optional
        unique: true/false         # Optional
    foreign_keys:                  # Optional
      - columns: [local_column]
        references_table: other_table
        references_columns: [other_column]
        name: fk_name              # Optional
        on_delete: CASCADE         # Optional
        on_update: CASCADE         # Optional
```

#### Functions

```yaml
functions:
  function_name:
    parameters:                    # Optional
      param_name: DATA_TYPE
    returns: RETURN_TYPE           # Optional, defaults to 'void'
    language: plpgsql             # Optional, defaults to 'sql'
    body: |
      -- SQL function body
      BEGIN
        -- Function logic here
      END;
```

### Supported Data Types

- Numeric: `SERIAL`, `BIGSERIAL`, `INTEGER`, `BIGINT`, `DECIMAL`, `NUMERIC`, `REAL`, `DOUBLE PRECISION`
- Text: `VARCHAR`, `CHAR`, `TEXT`
- Date/Time: `TIMESTAMP`, `TIMESTAMPTZ`, `DATE`, `TIME`, `INTERVAL`
- Boolean: `BOOLEAN`, `BOOL`
- Binary: `BYTEA`
- Network: `INET`, `CIDR`, `MACADDR`
- JSON: `JSON`, `JSONB`
- And many more PostgreSQL types...

### Supported Function Languages

- `sql`
- `plpgsql`
- `c`
- `python`
- `perl`
- `tcl`

### Entity Generation

Generate entity classes from your schema definitions:

```bash
# Generate TypeScript interfaces and classes
migracraft --generate-entities typescript

# Generate Python dataclasses
migracraft --generate-entities python

# Generate Dart classes with JSON serialization
migracraft --generate-entities dart

# Generate Java POJOs with getters/setters
migracraft --generate-entities java

# Generate C++ classes with getters/setters
migracraft --generate-entities cpp

# Generate C# classes with properties
migracraft --generate-entities csharp

# Generate Go structs with JSON tags
migracraft --generate-entities go

# Specify custom output directory
migracraft --generate-entities typescript --entities-dir src/models
```

### Supported Languages for Entity Generation

- **TypeScript**: Generates interfaces and classes with proper typing
- **Python**: Generates dataclasses with type hints
- **Dart**: Generates classes with JSON serialization methods
- **Java**: Generates POJOs with getters/setters and proper imports
- **C++**: Generates header files with getters/setters
- **C#**: Generates classes with properties and proper attributes
- **Go**: Generates structs with JSON tags for serialization

## Architecture

The tool is built with a modular architecture for maintainability:

- **Config**: Centralized configuration and constants
- **Validator**: Schema validation logic
- **SQL Generator**: SQL generation for tables, functions, and modifications
- **Migration Manager**: Migration file management and state tracking
- **Main Tool**: High-level orchestration and user interface

## Benefits of Refactoring

1. **Maintainability**: Each module has a single responsibility
2. **Testability**: Smaller, focused modules are easier to test
3. **Extensibility**: Easy to add new features or modify existing ones
4. **Readability**: Clear separation of concerns
5. **Reusability**: Components can be used independently

## Examples

See the `schemas/` directory for complete examples including:
- User management system
- Product catalog
- Order processing
- System auditing and configuration

## Running MigraCraft

You can run MigraCraft in two ways:

1. **Using the installed command** (recommended):
   ```bash
   migracraft --help
   migracraft --validate
   migracraft --full --name "initial_setup"
   ```

2. **Using the Python script directly**:
   ```bash
   python migrate.py --help
   python migrate.py --validate
   python migrate.py --full --name "initial_setup"
   ```

Both methods provide the same functionality. The `migracraft` command is available after installing the package with `pip install -e .`

## License

MIT License - see LICENSE file for details.
