Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference New Issue #105 (php artisan migrate errors) : Rectified #106

Open
wants to merge 12 commits into
base: dev
Choose a base branch
from
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ We welcome your innovative ideas and suggestions to make a better solution for t

http://reliefsupports.org

## Contribution Guide
## How to Contribute

### Setup the development environment
Developers can now initiate discussions through [Gitter](https://gitter.im/relief-supports/Lobby). Before starting to work on an issue, please go through the [Waffle](https://waffle.io/reliefsupports/reliefsupports.org) board to make sure that the item is not already in progress. Once you select a task to work on, please drag it to `In Progress`.

### Setting up the development environment

* Clone the project repository as below:

```
git clone [email protected]:reliefsupports/web-app.git reliefsupports
git clone [email protected]:reliefsupports/reliefsupports.org.git reliefsupports`
```

* Then, rename `.env.example` file as `.env`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function up()
$table->text('donation')->nullable();
$table->text('information')->nullable();
$table->string('source',11);
$table->integer('status')->->default(0);
$table->integer('status')->default(0);
$table->timestamps();
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function up()
$table->text('needs')->nullable();
$table->integer('heads')->nullable();
$table->string('source',11);
$table->integer('status')->->default(0);
$table->integer('status')->default(0);
$table->timestamps();
});
}
Expand Down