このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
登録
サインイン
mcarman
/
Wappler_Access
ウォッチ
1
スター
0
フォーク
0
コード
課題
1
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
Deleting data from sqlite
master
rpm-mcarman
2年前
親
415e1cb5ee
コミット
7d84f25890
5個のファイルの変更
、
28行の追加
、
2行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+13
-0
.wappler/migrations/authdb/20240319002134_Nothing.js
+1
-1
.wappler/targets/Development/app/config/config.json
+13
-0
.wappler/targets/Development/databases/authdb.json
+1
-1
app/config/config.json
バイナリ
data/authdb.sqlite3
+ 13
- 0
.wappler/migrations/authdb/20240319002134_Nothing.js
ファイルの表示
@@ -0,0 +1,13 @@
exports.up = function(knex) {
return knex.schema
.createTable('Nothing', async function (table) {
table.increments('id');
})
};
exports.down = function(knex) {
return knex.schema
.dropTable('Nothing')
};
+ 1
- 1
.wappler/targets/Development/app/config/config.json
ファイルの表示
@@ -6,6 +6,6 @@
"methods": "GET,POST,DELETE,PATCH,PUT"
},
"env": {
"API_BASEURL": "http://
localhost:8080
/api/v1.0/"
"API_BASEURL": "http://
vapor.prelub.com
/api/v1.0/"
}
}
+ 13
- 0
.wappler/targets/Development/databases/authdb.json
ファイルの表示
@@ -139,6 +139,19 @@
}
},
"db": {}
},
"Nothing": {
"columns": {
"id": {
"db": {
"type": "increments",
"primary": true,
"unique": false,
"nullable": false
}
}
},
"db": {}
}
},
"views": {}
+ 1
- 1
app/config/config.json
ファイルの表示
@@ -6,6 +6,6 @@
"methods": "GET,POST,DELETE,PATCH,PUT"
},
"env": {
"API_BASEURL": "http://
localhost:8080
/api/v1.0/"
"API_BASEURL": "http://
vapor.prelub.com
/api/v1.0/"
}
}
バイナリ
data/authdb.sqlite3
ファイルの表示
書き込み
プレビュー
読み込み中…
キャンセル
保存