回答編集履歴
2
修正
test
CHANGED
@@ -8,6 +8,28 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
+
```php
|
12
|
+
|
13
|
+
protected $modifiers = [
|
14
|
+
|
15
|
+
'VirtualAs', 'StoredAs', 'Unsigned', 'Charset', 'Collate', 'Nullable',
|
16
|
+
|
17
|
+
'Default', 'Increment', 'Comment', 'After', 'First',
|
18
|
+
|
19
|
+
];
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
|
24
|
+
|
11
25
|
PostgreSQL
|
12
26
|
|
13
27
|
[https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php#L23](https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php#L23)
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```php
|
32
|
+
|
33
|
+
protected $modifiers = ['Increment', 'Nullable', 'Default'];
|
34
|
+
|
35
|
+
```
|
1
修正
test
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
|
5
5
|
MySQL
|
6
6
|
|
7
|
-
https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php#L16-L19
|
7
|
+
[https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php#L16-L19](https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php#L16-L19)
|
8
8
|
|
9
9
|
|
10
10
|
|
11
11
|
PostgreSQL
|
12
12
|
|
13
|
-
https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php#L23
|
13
|
+
[https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php#L23](https://github.com/laravel/framework/blob/5.5/src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php#L23)
|