Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Flush and build db from code


Go to End


2 Posts   956 Views

Avatar
DeklinKelly

Community Member, 197 Posts

15 May 2009 at 5:49am

Edited: 15/05/2009 6:24am

Is there something I can put in _config.php or Page.php that will do the same thing as this?

dev/build?flush=1

Avatar
Willr

Forum Moderator, 5523 Posts

15 May 2009 at 12:02pm

Have alook in the function build() in developmentAdmin.php

This is pretty much what you need to get it to work

$da = new DatabaseAdmin();
$da->build();