├── README.md └── src ├── laravel_migrations └── laravel_migrations_create.sql └── native ├── cleanup.sql ├── create_mysql_store.sql ├── mysql_store.mwb.bak ├── mysql_store_erd.mwb └── seed_mysql_store.sql /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runninguru/MySQL-eCommerce/HEAD/README.md -------------------------------------------------------------------------------- /src/laravel_migrations/laravel_migrations_create.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/native/cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runninguru/MySQL-eCommerce/HEAD/src/native/cleanup.sql -------------------------------------------------------------------------------- /src/native/create_mysql_store.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runninguru/MySQL-eCommerce/HEAD/src/native/create_mysql_store.sql -------------------------------------------------------------------------------- /src/native/mysql_store.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runninguru/MySQL-eCommerce/HEAD/src/native/mysql_store.mwb.bak -------------------------------------------------------------------------------- /src/native/mysql_store_erd.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runninguru/MySQL-eCommerce/HEAD/src/native/mysql_store_erd.mwb -------------------------------------------------------------------------------- /src/native/seed_mysql_store.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runninguru/MySQL-eCommerce/HEAD/src/native/seed_mysql_store.sql --------------------------------------------------------------------------------