mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
20039860eb
Amended documentation to point to it from the install guide in the alternative section Removed callout from the ubuntu guide, as it is unrelated
11 lines
186 B
Bash
11 lines
186 B
Bash
#!/bin/bash
|
|
FILE=/tmp/migrate_done
|
|
|
|
if [ -f $FILE ]
|
|
then
|
|
echo "File $FILE exists..."
|
|
else
|
|
cd $RAILS_STACK_PATH
|
|
bundle exec rake db:migrate db:seed_fu
|
|
touch /tmp/migrate_done
|
|
fi |