From 810aa9047e7e065e5b8b763a5d96a92c17999772 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 19 Mar 2026 03:55:55 +0000 Subject: [PATCH] Remove undocumented table_prefix config from README The table_prefix configuration option was documented as controlling the database table prefix, but it is never actually used in the codebase. Table names are hardcoded in the models and migration. Removed the misleading section to keep the README accurate. https://claude.ai/code/session_01KiSMVttL2r3bnoqVph7TXa --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 957d110..3df8288 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ - [Introduction](#introduction) - [Installation](#installation) - [Configuration](#configuration) - - [Table Prefix](#table-prefix) - [JSON Schema Defaults](#json-schema-defaults) - [Custom Models](#custom-models) - [Creating Templates](#creating-templates) @@ -60,15 +59,6 @@ php artisan vendor:publish --tag=schematic-config The Schematic configuration file is located at `config/schematic.php`. Each configuration option is documented below. - -### Table Prefix - -The `table_prefix` option controls the prefix applied to all Schematic database tables: - -| Option | Environment Variable | Default | Description | -|---|---|---|---| -| `table_prefix` | — | `schematic_` | The prefix used for all database tables created by Schematic. | - ### JSON Schema Defaults