Mysql xóa ký tự cuối cùng

Di chuyển giống như kiểm soát phiên bản cho cơ sở dữ liệu của bạn, cho phép nhóm của bạn xác định và chia sẻ định nghĩa lược đồ cơ sở dữ liệu của ứng dụng. Nếu bạn đã từng phải yêu cầu đồng đội thêm một cột vào lược đồ cơ sở dữ liệu cục bộ của họ theo cách thủ công sau khi lấy các thay đổi của bạn từ kiểm soát nguồn, thì bạn đã gặp phải vấn đề mà việc di chuyển cơ sở dữ liệu giải quyết được

Mặt tiền

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09 của Laravel cung cấp hỗ trợ cơ sở dữ liệu bất khả tri để tạo và thao tác các bảng trên tất cả các hệ thống cơ sở dữ liệu được hỗ trợ của Laravel. Thông thường, quá trình di chuyển sẽ sử dụng mặt tiền này để tạo và sửa đổi các bảng và cột cơ sở dữ liệu

Tạo Migration

Bạn có thể sử dụng lệnh Artisan

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

10 để tạo di chuyển cơ sở dữ liệu. Di chuyển mới sẽ được đặt trong thư mục

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

11 của bạn. Mỗi tên tệp di chuyển chứa dấu thời gian cho phép Laravel xác định thứ tự di chuyển

php artisan make:migration create_flights_table

Laravel sẽ sử dụng tên của quá trình di chuyển để cố gắng đoán tên của bảng và liệu quá trình di chuyển có tạo ra một bảng mới hay không. Nếu Laravel có thể xác định tên bảng từ tên di chuyển, Laravel sẽ điền trước vào tệp di chuyển đã tạo với bảng đã chỉ định. Nếu không, bạn chỉ cần chỉ định bảng trong tệp di chuyển theo cách thủ công

Nếu bạn muốn chỉ định đường dẫn tùy chỉnh cho quá trình di chuyển đã tạo, bạn có thể sử dụng tùy chọn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

12 khi thực hiện lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

10. Đường dẫn đã cho phải liên quan đến đường dẫn cơ sở của ứng dụng của bạn

Lưu ý
Sơ khai di chuyển có thể được tùy chỉnh bằng cách sử dụng.

Di chuyển đè bẹp

Khi bạn xây dựng ứng dụng của mình, bạn có thể tích lũy ngày càng nhiều lần di chuyển theo thời gian. Điều này có thể dẫn đến thư mục

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

11 của bạn trở nên cồng kềnh với hàng trăm lần di chuyển. Nếu muốn, bạn có thể "bóp" các lần di chuyển của mình thành một tệp SQL duy nhất. Để bắt đầu, hãy thực hiện lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

15

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

Khi bạn thực hiện lệnh này, Laravel sẽ ghi một tệp "lược đồ" vào thư mục

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

16 của ứng dụng của bạn. Tên của tệp lược đồ sẽ tương ứng với kết nối cơ sở dữ liệu. Bây giờ, khi bạn cố gắng di chuyển cơ sở dữ liệu của mình và không có quá trình di chuyển nào khác được thực thi, trước tiên Laravel sẽ thực thi các câu lệnh SQL của tệp lược đồ của kết nối cơ sở dữ liệu mà bạn đang sử dụng. Sau khi thực thi các câu lệnh của tệp lược đồ, Laravel sẽ thực hiện mọi di chuyển còn lại không phải là một phần của kết xuất lược đồ

Nếu các thử nghiệm của ứng dụng của bạn sử dụng kết nối cơ sở dữ liệu khác với kết nối cơ sở dữ liệu bạn thường sử dụng trong quá trình phát triển cục bộ, thì bạn nên đảm bảo rằng bạn đã kết xuất tệp lược đồ bằng kết nối cơ sở dữ liệu đó để các thử nghiệm của bạn có thể xây dựng cơ sở dữ liệu của bạn. Bạn có thể muốn làm điều này sau khi kết xuất kết nối cơ sở dữ liệu mà bạn thường sử dụng trong quá trình phát triển cục bộ

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

0

Bạn nên cam kết tệp lược đồ cơ sở dữ liệu của mình để kiểm soát nguồn để các nhà phát triển mới khác trong nhóm của bạn có thể nhanh chóng tạo cấu trúc cơ sở dữ liệu ban đầu của ứng dụng của bạn

Cảnh báo
Tính năng nén di chuyển chỉ khả dụng cho cơ sở dữ liệu MySQL, PostgreSQL và SQLite và sử dụng ứng dụng khách dòng lệnh của cơ sở dữ liệu. Kết xuất lược đồ có thể không được khôi phục vào cơ sở dữ liệu SQLite trong bộ nhớ.

Cơ cấu di cư

Một lớp di chuyển chứa hai phương thức.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

17 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

18. Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

17 được sử dụng để thêm các bảng, cột hoặc chỉ mục mới vào cơ sở dữ liệu của bạn, trong khi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

18 sẽ đảo ngược các hoạt động được thực hiện bởi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

17

Trong cả hai phương pháp này, bạn có thể sử dụng trình tạo lược đồ Laravel để tạo và sửa đổi các bảng một cách rõ ràng. Để tìm hiểu về tất cả các phương pháp có sẵn trên trình tạo

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09,. Ví dụ: quá trình di chuyển sau đây tạo bảng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

23

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

8

Đặt kết nối di chuyển

Nếu quá trình di chuyển của bạn sẽ tương tác với một kết nối cơ sở dữ liệu khác với kết nối cơ sở dữ liệu mặc định của ứng dụng, thì bạn nên đặt thuộc tính

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

24 cho quá trình di chuyển của mình

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

0

Di chuyển đang chạy

Để chạy tất cả các lần di chuyển chưa hoàn thành của bạn, hãy thực hiện lệnh Artisan

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25

Nếu bạn muốn xem những lần di chuyển nào đã chạy cho đến nay, bạn có thể sử dụng lệnh Artisan

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

26

Nếu bạn muốn xem các câu lệnh SQL sẽ được thực hiện bởi quá trình di chuyển mà không thực sự chạy chúng, bạn có thể cung cấp cờ

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

27 cho lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

5

Cô lập thực hiện Migration

Nếu bạn đang triển khai ứng dụng của mình trên nhiều máy chủ và chạy di chuyển như một phần của quy trình triển khai, bạn có thể không muốn hai máy chủ cố gắng di chuyển cơ sở dữ liệu cùng một lúc. Để tránh điều này, bạn có thể sử dụng tùy chọn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

29 khi gọi lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25

Khi tùy chọn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

29 được cung cấp, Laravel sẽ nhận được một khóa nguyên tử bằng cách sử dụng trình điều khiển bộ đệm của ứng dụng của bạn trước khi cố gắng chạy quá trình di chuyển của bạn. Tất cả các nỗ lực khác để chạy lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25 trong khi khóa đó được giữ sẽ không thực thi;

php artisan make:migration create_flights_table

0

Cảnh báo Để sử dụng tính năng này, ứng dụng của bạn phải đang sử dụng trình điều khiển bộ nhớ cache

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

33,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

34,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

35,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

36,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

37 hoặc

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

38 làm trình điều khiển bộ nhớ cache mặc định cho ứng dụng của bạn. Ngoài ra, tất cả các máy chủ phải giao tiếp với cùng một máy chủ bộ đệm trung tâm

Buộc di chuyển để chạy trong sản xuất

Một số thao tác di chuyển mang tính phá hoại, có nghĩa là chúng có thể khiến bạn mất dữ liệu. Để bảo vệ bạn khỏi việc chạy các lệnh này đối với cơ sở dữ liệu sản xuất của mình, bạn sẽ được nhắc xác nhận trước khi các lệnh được thực thi. Để buộc các lệnh chạy mà không có dấu nhắc, hãy sử dụng cờ

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

39

Quay lại di chuyển

Để khôi phục hoạt động di chuyển mới nhất, bạn có thể sử dụng lệnh Artisan

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

40. Lệnh này khôi phục "đợt" di chuyển cuối cùng, có thể bao gồm nhiều tệp di chuyển

php artisan make:migration create_flights_table

9

Bạn có thể khôi phục một số lần di chuyển hạn chế bằng cách cung cấp tùy chọn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

41 cho lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

40. Ví dụ: lệnh sau sẽ khôi phục năm lần di chuyển cuối cùng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

2

Lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

43 sẽ khôi phục tất cả các lần di chuyển của ứng dụng của bạn

Quay lại & Di chuyển bằng một lệnh duy nhất

Lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

44 sẽ khôi phục tất cả các lần di chuyển của bạn và sau đó thực hiện lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25. Lệnh này tạo lại toàn bộ cơ sở dữ liệu của bạn một cách hiệu quả

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

6

Bạn có thể khôi phục và di chuyển lại một số lần di chuyển hạn chế bằng cách cung cấp tùy chọn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

41 cho lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

47. Ví dụ: lệnh sau sẽ khôi phục và di chuyển lại năm lần di chuyển cuối cùng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

0

Bỏ tất cả các bảng và di chuyển

Lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

48 sẽ loại bỏ tất cả các bảng khỏi cơ sở dữ liệu và sau đó thực hiện lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

1

Cảnh báo
Lệnh

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

48 sẽ loại bỏ tất cả các bảng cơ sở dữ liệu bất kể tiền tố của chúng là gì. Cần thận trọng khi sử dụng lệnh này khi phát triển trên cơ sở dữ liệu được chia sẻ với các ứng dụng khác.

Những cái bàn

Tạo bảng

Để tạo một bảng cơ sở dữ liệu mới, hãy sử dụng phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

51 trên mặt tiền

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09. Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

51 chấp nhận hai đối số. cái đầu tiên là tên của bảng, trong khi cái thứ hai là một bao đóng nhận một đối tượng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

54 có thể được sử dụng để xác định bảng mới

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

2

Khi tạo bảng, bạn có thể sử dụng bất kỳ trình tạo lược đồ nào để xác định các cột của bảng

Kiểm tra sự tồn tại của bảng/cột

Bạn có thể kiểm tra sự tồn tại của một bảng hoặc cột bằng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

55 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

56

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

3

Kết nối cơ sở dữ liệu & Tùy chọn bảng

Nếu bạn muốn thực hiện thao tác lược đồ trên kết nối cơ sở dữ liệu không phải là kết nối mặc định của ứng dụng của bạn, hãy sử dụng phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

57

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

4

Ngoài ra, một vài thuộc tính và phương thức khác có thể được sử dụng để xác định các khía cạnh khác của việc tạo bảng. Thuộc tính

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

58 có thể được sử dụng để chỉ định công cụ lưu trữ của bảng khi sử dụng MySQL

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

5

Các thuộc tính

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

59 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

60 có thể được sử dụng để chỉ định bộ ký tự và đối chiếu cho bảng đã tạo khi sử dụng MySQL

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

6

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

61 có thể được sử dụng để chỉ ra rằng bảng phải là "tạm thời". Các bảng tạm thời chỉ hiển thị với phiên cơ sở dữ liệu của kết nối hiện tại và tự động bị hủy khi đóng kết nối

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

7

Nếu bạn muốn thêm một "bình luận" vào một bảng cơ sở dữ liệu, bạn có thể gọi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

62 trên thể hiện của bảng. Nhận xét bảng hiện chỉ được hỗ trợ bởi MySQL và Postgres

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

8

Cập nhật bảng

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

63 trên mặt tiền

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09 có thể được sử dụng để cập nhật các bảng hiện có. Giống như phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

51, phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

63 chấp nhận hai đối số. tên của bảng và một bao đóng nhận một phiên bản

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

54 mà bạn có thể sử dụng để thêm các cột hoặc chỉ mục vào bảng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

9

Đổi tên/xóa bảng

Để đổi tên một bảng cơ sở dữ liệu hiện có, hãy sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

68

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

00

Để xóa một bảng hiện có, bạn có thể sử dụng các phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

69 hoặc

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

70

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

01

Đổi tên bảng bằng khóa ngoại

Trước khi đổi tên bảng, bạn nên xác minh rằng bất kỳ ràng buộc khóa ngoại nào trên bảng đều có tên rõ ràng trong tệp di chuyển của bạn thay vì để Laravel gán tên dựa trên quy ước. Mặt khác, tên ràng buộc khóa ngoại sẽ tham chiếu đến tên bảng cũ

Cột

Tạo cột

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

63 trên mặt tiền

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09 có thể được sử dụng để cập nhật các bảng hiện có. Giống như phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

51, phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

63 chấp nhận hai đối số. tên của bảng và một bao đóng nhận một phiên bản

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

75 mà bạn có thể sử dụng để thêm các cột vào bảng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

9

Các loại cột có sẵn

Kế hoạch chi tiết của trình tạo lược đồ cung cấp nhiều phương pháp tương ứng với các loại cột khác nhau mà bạn có thể thêm vào bảng cơ sở dữ liệu của mình. Mỗi phương pháp có sẵn được liệt kê trong bảng dưới đây

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

76

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

77 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

78 (khóa chính) tăng tự động

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

03

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

79

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

80 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

81

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

04

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

82

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

83 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

84

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

85

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

86 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

87

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

05

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

88

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

89 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

90 với độ dài cho trước

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

06

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

91

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

92 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

93 (với múi giờ) với độ chính xác tùy chọn (tổng số)

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

07

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

94

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

95 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

93 với độ chính xác tùy chọn (tổng số)

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

08

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

97

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

98 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

99

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

000

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

001 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

002 với độ chính xác (tổng số) và tỷ lệ (chữ số thập phân) đã cho

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

80

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

003

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

004 tạo một cột tương đương với

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

005 với độ chính xác (tổng chữ số) và tỷ lệ (chữ số thập phân) đã cho

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

81

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

006

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

007 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

008 với các giá trị hợp lệ đã cho

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

82

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

009

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

010 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

011 với độ chính xác (tổng số) và tỷ lệ (chữ số thập phân) đã cho

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

83

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

012

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

013 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

78

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

84

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

015

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

016 thêm một cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

017 cho một lớp mô hình nhất định

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

85

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

018

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

019 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

020

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

86

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

021

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

022 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

023

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

87

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

024

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

025 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

026

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

88

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

027

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

028 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

029

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

89

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

030

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

031 là bí danh của phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

77. Theo mặc định, phương thức sẽ tạo một cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

031;

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

034

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

035 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

036 tăng tự động làm khóa chính

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

00

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

037

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

038 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

039

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

01

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

040

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

041 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

042

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

02

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

043

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

044 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

045

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

046

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

047 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

048

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

03

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

049

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

050 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

051

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

04

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

052

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

053 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

054

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

05

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

055

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

056 tạo một cột nhằm chứa địa chỉ MAC. Một số hệ thống cơ sở dữ liệu, chẳng hạn như PostgreSQL, có một loại cột dành riêng cho loại dữ liệu này. Các hệ thống cơ sở dữ liệu khác sẽ sử dụng một cột tương đương chuỗi

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

06

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

057

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

058 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

059 tăng tự động làm khóa chính

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

07

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

060

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

061 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

062

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

08

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

063

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

064 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

065

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

09

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

066

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

067 là một phương pháp thuận tiện có thêm cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

068

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

78 và cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

070

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

042

Phương pháp này nhằm mục đích sử dụng khi xác định các cột cần thiết cho mối quan hệ Eloquent đa hình. Trong ví dụ sau, các cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

072 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

073 sẽ được tạo

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

50

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

074

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

075 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

076

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

51

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

077

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

078 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

079

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

52

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

080

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

081 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

082

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

53

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

083

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

084 là bí danh của phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

54

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

085

Phương pháp tương tự như phương pháp;

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

55

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

086

Phương pháp tương tự như phương pháp;

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

56

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

087

Phương pháp tương tự như phương pháp;

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

57

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

088

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

089 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

090

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

58

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

091

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

092 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

093

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

59

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

094

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

095 tạo một cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

096, nullable nhằm mục đích lưu trữ "nhớ tôi" hiện tại

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

097

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

098 tạo một cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

099 với danh sách các giá trị hợp lệ đã cho

php artisan make:migration create_flights_table

00

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

800

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

801 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

802 tăng tự động làm khóa chính

php artisan make:migration create_flights_table

01

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

803

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

804 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

805

php artisan make:migration create_flights_table

02

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

806

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

807 thêm cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

808

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

809 (với múi giờ) nullable với độ chính xác tùy chọn (tổng số). Cột này nhằm lưu trữ dấu thời gian

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

808 cần thiết cho chức năng "xóa mềm" của Eloquent

php artisan make:migration create_flights_table

03

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

811

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

812 thêm một cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

808

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

809 có thể null với độ chính xác tùy chọn (tổng số). Cột này nhằm lưu trữ dấu thời gian

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

808 cần thiết cho chức năng "xóa mềm" của Eloquent

php artisan make:migration create_flights_table

04

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

816

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

817 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

042 có độ dài đã cho

php artisan make:migration create_flights_table

05

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

819

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

820 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

821

php artisan make:migration create_flights_table

06

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

822

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

823 tạo một cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

824 (với múi giờ) với độ chính xác tùy chọn (tổng số)

php artisan make:migration create_flights_table

07

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

825

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

826 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

824 với độ chính xác tùy chọn (tổng số)

php artisan make:migration create_flights_table

08

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

828

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

829 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

809 (với múi giờ) với độ chính xác tùy chọn (tổng số)

php artisan make:migration create_flights_table

09

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

831

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

832 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

809 với độ chính xác tùy chọn (tổng số)

php artisan make:migration create_flights_table

90

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

834

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

835 tạo các cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

836 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

837

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

809 (với múi giờ) với độ chính xác tùy chọn (tổng số)

php artisan make:migration create_flights_table

91

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

839

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

840 tạo các cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

836 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

837

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

809 với độ chính xác tùy chọn (tổng số)

php artisan make:migration create_flights_table

92

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

844

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

845 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

846 tăng tự động làm khóa chính

php artisan make:migration create_flights_table

93

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

847

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

848 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

849

php artisan make:migration create_flights_table

94

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

850

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

851 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

852

php artisan make:migration create_flights_table

95

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

853

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

854 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

78

php artisan make:migration create_flights_table

96

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

856

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

857 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

858 với độ chính xác tùy chọn (tổng số) và tỷ lệ (chữ số thập phân)

php artisan make:migration create_flights_table

97

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

859

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

860 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

036

php artisan make:migration create_flights_table

98

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

862

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

863 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

059

php artisan make:migration create_flights_table

99

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

865

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

866 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

802

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

20

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

868

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

869 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

846

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

21

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

871

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

872 là một phương pháp thuận tiện có thêm cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

068

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

874 và cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

070

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

042

Phương pháp này nhằm mục đích sử dụng khi xác định các cột cần thiết cho mối quan hệ Eloquent đa hình sử dụng mã định danh ULID. Trong ví dụ sau, các cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

072 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

073 sẽ được tạo

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

22

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

879

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

880 là một phương pháp thuận tiện có thêm cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

068

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

882 và cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

070

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

042

Phương pháp này được thiết kế để sử dụng khi xác định các cột cần thiết cho mối quan hệ Eloquent đa hình sử dụng mã định danh UUID. Trong ví dụ sau, các cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

072 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

073 sẽ được tạo

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

23

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

887

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

888 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

020

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

890

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

891 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

023

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

893

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

894 tạo cột tương đương

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

895

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

24

Công cụ sửa đổi cột

Ngoài các loại cột được liệt kê ở trên, có một số "công cụ sửa đổi" cột mà bạn có thể sử dụng khi thêm một cột vào bảng cơ sở dữ liệu. Ví dụ: để tạo cột "nullable", bạn có thể sử dụng phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

896

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

25

Bảng sau chứa tất cả các công cụ sửa đổi cột có sẵn. Danh sách này không bao gồm

Công cụ sửa đổi Mô tả

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

897Đặt cột "sau" một cột khác (MySQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

898Đặt cột INTEGER làm tăng tự động (khóa chính).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

899Chỉ định bộ ký tự cho cột (MySQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

000Chỉ định đối chiếu cho cột (MySQL/PostgreSQL/SQL Server).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

001Thêm nhận xét vào cột (MySQL/PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

002Chỉ định giá trị "mặc định" cho cột.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

003Đặt cột "đầu tiên" trong bảng (MySQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

004Đặt giá trị bắt đầu của trường tăng tự động (MySQL/PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

005Tạo cột "ẩn" cho truy vấn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

006 (MySQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

007Cho phép chèn giá trị NULL vào cột.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

008Tạo cột đã tạo được lưu trữ (MySQL/PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

009Đặt các cột INTEGER là UNSIGNED (MySQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

010Đặt cột DẤU THỜI GIAN để sử dụng CURRENT_TIMESTAMP làm giá trị mặc định.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

011Đặt cột DẤU THỜI GIAN để sử dụng CURRENT_TIMESTAMP khi bản ghi được cập nhật.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

012Tạo cột được tạo ảo (MySQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

013Tạo cột nhận dạng với các tùy chọn trình tự được chỉ định (PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

014Xác định mức độ ưu tiên của các giá trị chuỗi so với đầu vào cho một cột nhận dạng (PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

015Đặt loại cột không gian thành

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

028 - loại mặc định là

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

017 (PostgreSQL)

Biểu thức mặc định

Công cụ sửa đổi

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

018 chấp nhận một giá trị hoặc một phiên bản

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

019. Sử dụng phiên bản

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

020 sẽ ngăn Laravel gói giá trị trong dấu ngoặc kép và cho phép bạn sử dụng các chức năng cụ thể của cơ sở dữ liệu. Một tình huống mà điều này đặc biệt hữu ích là khi bạn cần gán các giá trị mặc định cho các cột JSON

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

26

Cảnh báo
Hỗ trợ cho các biểu thức mặc định tùy thuộc vào trình điều khiển cơ sở dữ liệu, phiên bản cơ sở dữ liệu và loại trường của bạn. Vui lòng tham khảo tài liệu cơ sở dữ liệu của bạn. Ngoài ra, không thể kết hợp các biểu thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

018 thô (sử dụng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

022) với các thay đổi cột thông qua phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

023.

Thứ tự cột

Khi sử dụng cơ sở dữ liệu MySQL, phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

024 có thể được sử dụng để thêm các cột sau một cột hiện có trong lược đồ

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

27

Sửa đổi cột

điều kiện tiên quyết

Trước khi sửa đổi một cột, bạn phải cài đặt gói

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

025 bằng trình quản lý gói Composer. Thư viện Doctrine DBAL được sử dụng để xác định trạng thái hiện tại của cột và tạo các truy vấn SQL cần thiết để thực hiện các thay đổi được yêu cầu đối với cột của bạn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

28

Nếu bạn dự định sửa đổi các cột được tạo bằng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

832, bạn cũng phải thêm cấu hình sau vào tệp cấu hình

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

027 của ứng dụng của mình

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

29

Cảnh báo
Nếu ứng dụng của bạn đang sử dụng Microsoft SQL Server, vui lòng đảm bảo rằng bạn đã cài đặt

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

028.

Cập nhật thuộc tính cột

Phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

023 cho phép bạn sửa đổi loại và thuộc tính của các cột hiện có. Ví dụ: bạn có thể muốn tăng kích thước của cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

817. Để xem phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

023 đang hoạt động, hãy tăng kích thước của cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

032 từ 25 lên 50. Để thực hiện điều này, chúng ta chỉ cần xác định trạng thái mới của cột và sau đó gọi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

023

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

60

Chúng tôi cũng có thể sửa đổi một cột thành nullable

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

61

Cảnh báo
Có thể sửa đổi các loại cột sau.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

80,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

83,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

86,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

89,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

98,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

95,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

92,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

001,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

004,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

038,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

044,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

053,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

064,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

804,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

817,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

820,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

826,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

851,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

854,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

860,

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

866, và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

891. Để sửa đổi cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

832, hãy nhập a.

Đổi tên cột

Để đổi tên cột, bạn có thể sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

057 do trình tạo lược đồ cung cấp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

62

Đổi tên cột trên cơ sở dữ liệu kế thừa

Nếu bạn đang chạy cài đặt cơ sở dữ liệu cũ hơn một trong các bản phát hành sau, bạn nên đảm bảo rằng bạn đã cài đặt thư viện

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

025 thông qua trình quản lý gói Composer trước khi đổi tên cột

  • MySQL <

    # Dump the current database schema and prune all existing migrations...

    php artisan schema:dump --prune

    059
  • MariaDB <

    # Dump the current database schema and prune all existing migrations...

    php artisan schema:dump --prune

    060
  • SQLite <

    # Dump the current database schema and prune all existing migrations...

    php artisan schema:dump --prune

    061

thả cột

Để thả một cột, bạn có thể sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

062 trên trình tạo lược đồ

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

63

Bạn có thể loại bỏ nhiều cột khỏi một bảng bằng cách chuyển một mảng tên cột cho phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

062

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

64

Bỏ cột trên cơ sở dữ liệu kế thừa

Nếu bạn đang chạy phiên bản SQLite trước

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

064, bạn phải cài đặt gói

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

025 thông qua trình quản lý gói Composer trước khi có thể sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

062. Việc loại bỏ hoặc sửa đổi nhiều cột trong một lần di chuyển trong khi sử dụng gói này không được hỗ trợ

Bí danh lệnh có sẵn

Laravel cung cấp một số phương thức thuận tiện liên quan đến việc loại bỏ các loại cột phổ biến. Mỗi phương pháp này được mô tả trong bảng dưới đây

CommandDescription

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

067Thả cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

068 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

069.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

070Thả cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

071.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

072Thả cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

808.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

074Bí danh của phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

075.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

076Thả cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

836 và

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

837.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

079Bí danh của phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

080

chỉ mục

Tạo chỉ mục

Trình tạo lược đồ Laravel hỗ trợ một số loại chỉ mục. Ví dụ sau tạo một cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

081 mới và chỉ định rằng các giá trị của nó phải là duy nhất. Để tạo chỉ mục, chúng ta có thể xâu chuỗi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

082 vào định nghĩa cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

65

Ngoài ra, bạn có thể tạo chỉ mục sau khi xác định cột. Để làm như vậy, bạn nên gọi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

082 trên bản thiết kế trình tạo lược đồ. Phương thức này chấp nhận tên của cột sẽ nhận được một chỉ mục duy nhất

Bạn thậm chí có thể chuyển một mảng các cột tới một phương thức chỉ mục để tạo chỉ mục tổng hợp (hoặc tổng hợp)

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

66

Khi tạo chỉ mục, Laravel sẽ tự động tạo tên chỉ mục dựa trên tên bảng, tên cột và loại chỉ mục, nhưng bạn có thể truyền đối số thứ hai cho phương thức để tự chỉ định tên chỉ mục

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

67

Các loại chỉ mục có sẵn

Lớp bản thiết kế lược đồ của Laravel cung cấp các phương thức để tạo từng loại chỉ mục được hỗ trợ bởi Laravel. Mỗi phương thức chỉ mục chấp nhận một đối số thứ hai tùy chọn để chỉ định tên của chỉ mục. Nếu bỏ qua, tên sẽ được lấy từ tên của bảng và (các) cột được sử dụng cho chỉ mục, cũng như loại chỉ mục. Mỗi phương pháp lập chỉ mục có sẵn được mô tả trong bảng bên dưới

LệnhMô tả

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

084Thêm khóa chính.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

085Thêm phím tổng hợp.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

086Thêm một chỉ mục duy nhất.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

087Thêm một chỉ mục.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

088Thêm chỉ mục toàn văn (MySQL/PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

089Thêm chỉ mục toàn văn của ngôn ngữ đã chỉ định (PostgreSQL).

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

090Thêm chỉ mục không gian (ngoại trừ SQLite)

Độ dài chỉ mục & MySQL/MariaDB

Theo mặc định, Laravel sử dụng bộ ký tự

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

091. Nếu bạn đang chạy phiên bản MySQL cũ hơn 5. 7. 7 hoặc MariaDB cũ hơn 10. 2. 2, bạn có thể cần định cấu hình thủ công độ dài chuỗi mặc định được tạo bởi quá trình di chuyển để MySQL tạo chỉ mục cho chúng. Bạn có thể định cấu hình độ dài chuỗi mặc định bằng cách gọi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

092 trong phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

093 của lớp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

094 của bạn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

68

Ngoài ra, bạn có thể bật tùy chọn

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

095 cho cơ sở dữ liệu của mình. Tham khảo tài liệu về cơ sở dữ liệu của bạn để biết hướng dẫn về cách bật tùy chọn này đúng cách

Đổi tên chỉ mục

Để đổi tên một chỉ mục, bạn có thể sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

096 được cung cấp bởi kế hoạch chi tiết của trình tạo lược đồ. Phương thức này chấp nhận tên chỉ mục hiện tại làm đối số đầu tiên và tên mong muốn làm đối số thứ hai

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

69

Cảnh báo
Nếu ứng dụng của bạn đang sử dụng cơ sở dữ liệu SQLite, bạn phải cài đặt gói

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

025 thông qua trình quản lý gói Composer trước khi có thể sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

096.

Giảm chỉ số

Để loại bỏ một chỉ mục, bạn phải chỉ định tên của chỉ mục. Theo mặc định, Laravel tự động gán tên chỉ mục dựa trên tên bảng, tên cột được lập chỉ mục và loại chỉ mục. Dưới đây là một số ví dụ

CommandDescription

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

099Xóa khóa chính khỏi bảng "người dùng".

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

500Xóa một chỉ mục duy nhất khỏi bảng "người dùng".

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

501Xóa chỉ mục cơ bản khỏi bảng "địa lý".

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

502Xóa chỉ mục toàn văn từ bảng "bài đăng".

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

503Xóa chỉ mục không gian khỏi bảng "geo" (ngoại trừ SQLite)

Nếu bạn chuyển một mảng các cột vào một phương thức bỏ chỉ mục, tên chỉ mục thông thường sẽ được tạo dựa trên tên bảng, cột và loại chỉ mục

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

00

Ràng buộc khóa ngoại

Laravel cũng cung cấp hỗ trợ để tạo các ràng buộc khóa ngoại, được sử dụng để buộc tính toàn vẹn tham chiếu ở cấp cơ sở dữ liệu. Ví dụ: hãy xác định cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

504 trên bảng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

505 tham chiếu cột

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

031 trên bảng

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

507

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

01

Vì cú pháp này khá dài dòng, Laravel cung cấp các phương thức bổ sung, ngắn gọn hơn sử dụng các quy ước để mang lại trải nghiệm tốt hơn cho nhà phát triển. Khi sử dụng phương pháp

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

013 để tạo cột của bạn, ví dụ trên có thể được viết lại như vậy

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

02

Phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

013 tạo một cột tương đương với

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

78, trong khi phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

511 sẽ sử dụng các quy ước để xác định tên bảng và cột được tham chiếu. Nếu tên bảng của bạn không khớp với quy ước của Laravel, bạn có thể chỉ định tên bảng bằng cách chuyển nó làm đối số cho phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

511

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

03

Bạn cũng có thể chỉ định hành động mong muốn cho các thuộc tính "khi xóa" và "khi cập nhật" của ràng buộc

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

04

Một cú pháp thay thế, biểu cảm cũng được cung cấp cho những hành động này

Phương pháp Mô tả

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

513Các bản cập nhật nên xếp tầng.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

514Các bản cập nhật nên bị hạn chế.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

515Xóa nên xếp tầng.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

516Việc xóa nên bị hạn chế.

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

517Deletes nên đặt giá trị khóa ngoại thành null

Mọi bổ sung phải được gọi trước phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

511

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

04

Đánh rơi khóa ngoại

Để xóa khóa ngoại, bạn có thể sử dụng phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

519, chuyển tên của ràng buộc khóa ngoại cần xóa làm đối số. Các ràng buộc khóa ngoại sử dụng quy ước đặt tên giống như các chỉ mục. Nói cách khác, tên ràng buộc khóa ngoại dựa trên tên của bảng và các cột trong ràng buộc, theo sau là hậu tố "_foreign"

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

06

Ngoài ra, bạn có thể chuyển một mảng chứa tên cột chứa khóa ngoại cho phương thức

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

519. Mảng sẽ được chuyển đổi thành tên ràng buộc khóa ngoài bằng cách sử dụng quy ước đặt tên ràng buộc của Laravel

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

07

Chuyển đổi các ràng buộc khóa ngoại

Bạn có thể bật hoặc tắt các ràng buộc khóa ngoại trong quá trình di chuyển của mình bằng cách sử dụng các phương pháp sau

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

08

Cảnh báo
SQLite tắt các ràng buộc khóa ngoại theo mặc định. Khi sử dụng SQLite, hãy đảm bảo cấu hình cơ sở dữ liệu của bạn trước khi thử tạo chúng trong quá trình di chuyển của bạn. Ngoài ra, SQLite chỉ hỗ trợ khóa ngoại khi tạo bảng chứ không hỗ trợ khi bảng bị thay đổi.

Sự kiện

Để thuận tiện, mỗi thao tác di chuyển sẽ gửi một sự kiện. Tất cả các sự kiện sau mở rộng lớp cơ sở

# Dump the current database schema and prune all existing migrations...

php artisan schema:dump --prune

521