From 10f663401b4fc69dd61f45ee6f7c65edcd5a24e7 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Mon, 14 May 2018 13:17:55 -0700 Subject: [PATCH] move init.sql to schema.sql closes #23 --- README.md | 6 +++--- migrations/{init.sql => schema.sql} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename migrations/{init.sql => schema.sql} (100%) diff --git a/README.md b/README.md index 06d42dc..c5181e8 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@ See https://telegraph.p3k.io/api for your local environment if necessary. * Run these commands to install the dependencies, create a local database, and run the tests: - + ```sh $ composer install $ mysql [ARGS] -e 'CREATE DATABASE telegraph;' - $ mysql [ARGS] < schema.sql + $ mysql [ARGS] < migrations/schema.sql $ phpunit # Hack hack hack! ``` @@ -33,7 +33,7 @@ Telegraph icon: https://thenounproject.com/search/?q=telegraph&i=22058 ## License -Copyright 2016 by Aaron Parecki +Copyright 2016-2018 by Aaron Parecki Available under the Apache 2.0 license. See [LICENSE](LICENSE). diff --git a/migrations/init.sql b/migrations/schema.sql similarity index 100% rename from migrations/init.sql rename to migrations/schema.sql