# Building new database gives blank page

**URL:** https://meta.discourse.org/t/building-new-database-gives-blank-page/50827
**Category:** Development
**Created:** [September 28, 2016, 10:43pm UTC](https://meta.discourse.org/t/building-new-database-gives-blank-page/50827 "2016-09-28T22:43:17Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [September 28, 2016, 10:43pm UTC](https://meta.discourse.org/t/building-new-database-gives-blank-page/50827/1 "2016-09-28T22:43:17Z")

</div>

Maybe this should be #Development, but I just did

```bash
git pull upstream master
git reset --hard upstream/master
RAILS_ENV=development bundle exec rake db:drop db:create db:migrate
bundle exec rails s

```

and when I load my new Discourse, nothing renders. I can view source and see that lots of stuff is there, but nothing renders. I don’t see anything obviously wrong in the console.

If I switch over to 1.6 and drop/create/migrate it works fine. Could some recent commit have broken this?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [September 28, 2016, 10:52pm UTC](https://meta.discourse.org/t/building-new-database-gives-blank-page/50827/2 "2016-09-28T22:52:11Z")

</div>

Oops. I just needed to:

```
rm -r tmp

```

in the discourse directory.

---

<div class="post-metadata">

### Author: ![tgxworld](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tgxworld/32/106117_2.png) [@tgxworld](https://meta.discourse.org/u/tgxworld)
#### Post date: [September 29, 2016, 9:24pm UTC](https://meta.discourse.org/t/building-new-database-gives-blank-page/50827/3 "2016-09-29T21:24:32Z")

</div>


