Merge pull request #46 from 8thlight/update-migration-script

Update migration script
This commit is contained in:
Takayuki Goto 2018-10-02 15:09:01 -05:00 committed by GitHub
commit 5a2d05b8d0
5 changed files with 10 additions and 1 deletions

View File

@ -16,14 +16,20 @@ before_install:
- make installtools
- bash ./scripts/install-postgres-10.sh
- npm install -g ganache-cli
- curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
- echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sudo apt-get update && sudo apt-get install yarn
before_script:
- go get -u github.com/pressly/sup/cmd/sup
- sudo -u postgres createdb vulcanize_private
- make migrate NAME=vulcanize_private
- bash ./pkg/transformers/start_test_chain.sh
- cd postgraphile && yarn
script:
- yarn test
- cd ../
- make test
notifications:

View File

@ -27,6 +27,7 @@ describe('bootServer', () => {
middleware: jasmine.createSpyObj<PostgraphileMiddleware>(['call']),
options: {
pluginHook: jasmine.createSpy('pluginHook'),
watchPg: true,
simpleSubscriptions: true,
graphiql: true,
webSocketMiddlewares: [] },

View File

@ -11,6 +11,7 @@ export interface PostgraphileMiddleware extends RequestHandler {}
export interface PostgraphileOptions {
pluginHook: PluginHookFn,
simpleSubscriptions: boolean;
watchPg: boolean;
graphiql: boolean;
// NOTE (jchristie@8thlight.com) Shape of the middlewares is not
// currently important to this application, but if a need arises,

View File

@ -27,6 +27,7 @@ export function buildServerConfig(
const options: PostgraphileOptions = {
pluginHook: pluginHook,
simpleSubscriptions: true,
watchPg: true,
graphiql: true,
webSocketMiddlewares: [
expressSessionHandler,

View File

@ -2,7 +2,7 @@
if [ $# -eq 1 ]
then
$GOBIN/migrate create -dir ./db/migrations -ext sql $1
$GOPATH/bin/migrate create -dir ./db/migrations -ext sql $1
else
echo "**An Error Occurred**"
echo "Usage: ./scripts/create_migration <migration-name>"