forked from mongeez/mongeez
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
echrist
committed
Oct 25, 2013
1 parent
ea7e75e
commit c78b617
Showing
6 changed files
with
146 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<mongoChangeLog> | ||
<changeSet changeId="ChangeSet-1" author="mlysaght" contexts="organizations"> | ||
<script> | ||
db.organization.insert({ | ||
"Organization" : "10Gen", | ||
"Location" : "NYC", | ||
DateFounded : {"Year" : 2008, "Month" : 01, "day" :01} | ||
}); | ||
db.organization.insert({ | ||
"Organization" : "SecondMarket", | ||
"Location" : "NYC", | ||
DateFounded : {"Year" : 2004, "Month" : 05, "day" :04} | ||
}); | ||
</script> | ||
</changeSet> | ||
<changeSet changeId="ChangeSet-2" author="mlysaght" contexts="users"> | ||
<script> | ||
db.user.insert({ "Name" : "Michael Lysaght"}); | ||
</script> | ||
<script> | ||
db.user.insert({ "Name" : "Oleksii Iepishkin"}); | ||
</script> | ||
</changeSet> | ||
<changeSet changeId="ChangeSet-3" author="exell"> | ||
<script> | ||
db.car.insert({ "Type" : "Porsche"}); | ||
</script> | ||
<script> | ||
db.car.insert({ "Type" : "Lamborghini"}); | ||
</script> | ||
</changeSet> | ||
<changeSet changeId="ChangeSet-4" author="exell" contexts="users, organizations"> | ||
<script> | ||
db.house.insert({ "Type" : "Bungalow"}); | ||
</script> | ||
<script> | ||
db.house.insert({ "Type" : "Split-Level"}); | ||
</script> | ||
</changeSet> | ||
</mongoChangeLog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<changeFiles> | ||
<file path="changeset_with_contexts.xml"/> | ||
</changeFiles> |