-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigration.html
More file actions
25 lines (17 loc) · 879 Bytes
/
migration.html
File metadata and controls
25 lines (17 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
head_title: "LESK: Basic configuration"
title: Basic configuration
---
<div class="row">
<div class="12u">
<p>After having configured your database settings, you will want to build the database.</p>
<p>If you kept the default database settings your will first have to initialize the SQLite file</p>
<pre><code>touch storage/database.sqlite</code></pre>
<p>To run the migration scripts run this command</p>
<pre><code>./artisan migrate</code></pre>
<p>To seed the database run the command below</p>
<pre><code>./artisan db:seed</code></pre>
</div>
</div>
{% include footer.html prev_page="basicconfiguration" prev_title="Basic configuration" next_page="firstlogin" next_title="First login" %}