- Added package.json to manage development scripts. - Updated restart-services.ps1 to call the new dev script for starting services. - Refactored start-admin.ps1, start-backend.ps1, start-frontend.ps1, and start-mcp.ps1 to utilize the dev script for starting respective services. - Enhanced stop-services.ps1 to improve process termination logic by matching command patterns.
38 lines
481 B
Markdown
38 lines
481 B
Markdown
---
|
|
title: "Rust Sqlx"
|
|
description:
|
|
date: 2022-08-29T13:55:08+08:00
|
|
draft: true
|
|
slug: rust-sqlx
|
|
image:
|
|
categories:
|
|
-
|
|
tags:
|
|
-
|
|
---
|
|
|
|
# sqlx-cli
|
|
|
|
## 创建 migration
|
|
|
|
```shell
|
|
sqlx migrate add categories
|
|
```
|
|
|
|
```sql
|
|
-- Add migration script here
|
|
CREATE TABLE IF NOT EXISTS categories(
|
|
id INT PRIMARY KEY DEFAULT AUTO_INCREMENT,
|
|
type_id INT UNIQUE NOT NULL,
|
|
parent_id INT NOT NULL,
|
|
name TEXT UNIQUE NOT NULL,
|
|
);
|
|
```
|
|
|
|
## 运行 migration
|
|
|
|
```sh
|
|
sqlx migrate run
|
|
```
|
|
|