Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aurimasniekis/dbmigration
https://github.com/aurimasniekis/dbmigration
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aurimasniekis/dbmigration
- Owner: aurimasniekis
- Created: 2013-09-20T06:56:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-20T07:00:17.000Z (over 11 years ago)
- Last Synced: 2023-03-22T05:16:27.800Z (almost 2 years ago)
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DBMigration
===========XML Version of migration file
--
```xml
```
Javascript Version of migration file
--
```javascript
migration("201309200947_add_column_title", function(m){
m.up = function(db) {
db.addColumn("users", "title", "string", "Pavadinimas", false);
}
m.down = function(db) {
db.removeColumn("users", "title");
}
});
```JSON Version of migration file
--
```json
{
"name": "201309200947_add_column_title",
"up": {
"add_column": {
"table": "users",
"name": "title",
"type": "string",
"default": "Pavadinimas",
"null": false
}
},
"down": {
"remove_column": {
"table": "users",
"name": "title"
}
}
}
```