This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
mcarman
/
Wappler_Access
Watch
1
Star
0
Fork
0
Code
Issues
1
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
DB Changes
master
rpm-mcarman
2 years ago
parent
7d84f25890
commit
ca21f4715d
3 changed files
with
13 additions
and
13 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
thing.js
+0
-13
.wappler/targets/Development/databases/authdb.json
BIN
data/authdb.sqlite3
.wappler/migrations/authdb/20240319011222_remove → thing.js
View File
@@ -0,0 +1,13 @@
exports.up = function(knex) {
return knex.schema
.dropTable('Nothing')
};
exports.down = function(knex) {
return knex.schema
.createTable('Nothing', async function (table) {
table.increments('id').primary().notNullable();
})
};
+ 0
- 13
.wappler/targets/Development/databases/authdb.json
View File
@@ -139,19 +139,6 @@
}
},
"db": {}
},
"Nothing": {
"columns": {
"id": {
"db": {
"type": "increments",
"primary": true,
"unique": false,
"nullable": false
}
}
},
"db": {}
}
},
"views": {}
BIN
data/authdb.sqlite3
View File
Write
Preview
Loading…
Cancel
Save