File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ Feature: Display information about a given table.
43
43
44
44
Scenario : Display information about a non default WordPress table
45
45
Given a WP install
46
- And I run `wp db query "CREATE TABLE not_wp ( id int(5) unsigned NOT NULL AUTO_INCREMENT, awesome_stuff TEXT, PRIMARY KEY (id) );" `
46
+ And I run `wp db query "CREATE TABLE not_wp ( id tinyint(3) NOT NULL AUTO_INCREMENT, awesome_stuff TEXT, PRIMARY KEY (id) );" `
47
47
48
48
When I try `wp db columns not_wp`
49
49
Then STDOUT should be a table containing rows:
50
- | Field | Type | Null | Key | Default | Extra |
51
- | id | int unsigned | NO | PRI | | auto_increment |
52
- | awesome_stuff | text | YES | | | |
50
+ | Field | Type | Null | Key | Default | Extra |
51
+ | id | tinyint ( 3 ) | NO | PRI | | auto_increment |
52
+ | awesome_stuff | text | YES | | | |
You can’t perform that action at this time.
0 commit comments