phpist

Untitled

Nov 5th, 2019
686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.20 KB | None | 0 0
  1. root@f1f9244dd57c:/web/yii2# php yii migrate/up --migrationPath=@vendor/dektrium/yii2-user/migrations
  2. Yii Migration Tool (based on Yii v2.0.29)
  3.  
  4. Creating migration history table "migration"...Done.
  5. Total 12 new migrations to be applied:
  6. m140209_132017_init
  7. m140403_174025_create_account_table
  8. m140504_113157_update_tables
  9. m140504_130429_create_token_table
  10. m140830_171933_fix_ip_field
  11. m140830_172703_change_account_table_name
  12. m141222_110026_update_ip_field
  13. m141222_135246_alter_username_length
  14. m150614_103145_update_social_account_table
  15. m150623_212711_fix_username_notnull
  16. m151218_234654_add_timezone_to_profile
  17. m160929_103127_add_last_login_at_to_user_table
  18.  
  19. Apply the above migrations? (yes|no) [no]:y
  20. *** applying m140209_132017_init
  21. > create table {{%user}} ... done (time: 0.018s)
  22. > create unique index {{%user_unique_username}} on {{%user}} (username) ... done (time: 0.005s)
  23. > create unique index {{%user_unique_email}} on {{%user}} (email) ... done (time: 0.005s)
  24. > create unique index {{%user_confirmation}} on {{%user}} (id, confirmation_token) ... done (time: 0.004s)
  25. > create unique index {{%user_recovery}} on {{%user}} (id, recovery_token) ... done (time: 0.005s)
  26. > create table {{%profile}} ... done (time: 0.009s)
  27. > add foreign key {{%fk_user_profile}}: {{%profile}} (user_id) references {{%user}} (id) ... done (time: 0.008s)
  28. *** applied m140209_132017_init (time: 0.080s)
  29.  
  30. *** applying m140403_174025_create_account_table
  31. > create table {{%account}} ... done (time: 0.010s)
  32. > create unique index {{%account_unique}} on {{%account}} (provider,client_id) ... done (time: 0.004s)
  33. > add foreign key {{%fk_user_account}}: {{%account}} (user_id) references {{%user}} (id) ... done (time: 0.004s)
  34. *** applied m140403_174025_create_account_table (time: 0.040s)
  35.  
  36. *** applying m140504_113157_update_tables
  37. > drop index {{%user_confirmation}} on {{%user}} ... done (time: 0.004s)
  38. > drop index {{%user_recovery}} on {{%user}} ... done (time: 0.002s)
  39. > drop column confirmation_token from table {{%user}} ... done (time: 0.002s)
  40. > drop column confirmation_sent_at from table {{%user}} ... done (time: 0.002s)
  41. > drop column recovery_token from table {{%user}} ... done (time: 0.002s)
  42. > drop column recovery_sent_at from table {{%user}} ... done (time: 0.002s)
  43. > drop column logged_in_from from table {{%user}} ... done (time: 0.002s)
  44. > drop column logged_in_at from table {{%user}} ... done (time: 0.002s)
  45. > rename column registered_from in table {{%user}} to registration_ip ... done (time: 0.002s)
  46. > add column flags integer NOT NULL DEFAULT 0 to table {{%user}} ... done (time: 0.002s)
  47. > rename column properties in table {{%account}} to data ... done (time: 0.002s)
  48. *** applied m140504_113157_update_tables (time: 0.046s)
  49.  
  50. *** applying m140504_130429_create_token_table
  51. > create table {{%token}} ... done (time: 0.003s)
  52. > create unique index {{%token_unique}} on {{%token}} (user_id,code,type) ... done (time: 0.005s)
  53. > add foreign key {{%fk_user_token}}: {{%token}} (user_id) references {{%user}} (id) ... done (time: 0.004s)
  54. *** applied m140504_130429_create_token_table (time: 0.033s)
  55.  
  56. *** applying m140830_171933_fix_ip_field
  57. > alter column registration_ip in table {{%user}} to bigint ... done (time: 0.017s)
  58. *** applied m140830_171933_fix_ip_field (time: 0.038s)
  59.  
  60. *** applying m140830_172703_change_account_table_name
  61. > rename table {{%account}} to {{%social_account}} ... done (time: 0.002s)
  62. *** applied m140830_172703_change_account_table_name (time: 0.023s)
  63.  
  64. *** applying m141222_110026_update_ip_field
  65. > alter column registration_ip in table {{%user}} to string(45) ... done (time: 0.013s)
  66. *** applied m141222_110026_update_ip_field (time: 0.040s)
  67.  
  68. *** applying m141222_135246_alter_username_length
  69. > alter column username in table {{%user}} to SET NOT NULL ... done (time: 0.001s)
  70. *** applied m141222_135246_alter_username_length (time: 0.017s)
  71.  
  72. *** applying m150614_103145_update_social_account_table
  73. > add column code string(32) NULL DEFAULT NULL to table {{%social_account}} ... done (time: 0.002s)
  74. > add column created_at integer NULL DEFAULT NULL to table {{%social_account}} ... done (time: 0.001s)
  75. > add column email string NULL DEFAULT NULL to table {{%social_account}} ... done (time: 0.002s)
  76. > add column username string NULL DEFAULT NULL to table {{%social_account}} ... done (time: 0.002s)
  77. > create unique index {{%account_unique_code}} on {{%social_account}} (code) ... done (time: 0.003s)
  78. *** applied m150614_103145_update_social_account_table (time: 0.026s)
  79.  
  80. *** applying m150623_212711_fix_username_notnull
  81. > alter column username in table {{%user}} to SET NOT NULL ... done (time: 0.001s)
  82. *** applied m150623_212711_fix_username_notnull (time: 0.016s)
  83.  
  84. *** applying m151218_234654_add_timezone_to_profile
  85. > add column timezone string(40) NULL DEFAULT NULL to table {{%profile}} ... done (time: 0.002s)
  86. *** applied m151218_234654_add_timezone_to_profile (time: 0.016s)
  87.  
  88. *** applying m160929_103127_add_last_login_at_to_user_table
  89. > add column last_login_at integer to table {{%user}} ... done (time: 0.001s)
  90. *** applied m160929_103127_add_last_login_at_to_user_table (time: 0.016s)
  91.  
  92.  
  93. 12 migrations were applied.
  94.  
  95. Migrated up successfully.
  96. root@f1f9244dd57c:/web/yii2# php yii migrate --migrationPath=@fedornabilkin/binds/migrations
  97. Yii Migration Tool (based on Yii v2.0.29)
  98.  
  99. Total 4 new migrations to be applied:
  100. m180301_074916_create_bind_uids_table
  101. m180301_090900_create_bind_binds_table
  102. m180302_202819_create_seo_table
  103. m180308_163510_create_catalog_table
  104.  
  105. Apply the above migrations? (yes|no) [no]:y
  106. *** applying m180301_074916_create_bind_uids_table
  107. > create table {{%bind_uids}} ... done (time: 0.010s)
  108. > create index {{%idx-bind_uids-created_by}} on {{%bind_uids}} (created_by) ... done (time: 0.004s)
  109. > create index {{%idx-bind_uids-updated_by}} on {{%bind_uids}} (updated_by) ... done (time: 0.004s)
  110. > create index {{%idx-bind_uids-status}} on {{%bind_uids}} (status) ... done (time: 0.004s)
  111. > create index {{%idx-bind_uids-table_name}} on {{%bind_uids}} (table_name) ... done (time: 0.004s)
  112. *** applied m180301_074916_create_bind_uids_table (time: 0.053s)
  113.  
  114. *** applying m180301_090900_create_bind_binds_table
  115. > create table {{%bind_binds}} ... done (time: 0.006s)
  116. > create index {{%idx-bind_binds-uid}} on {{%bind_binds}} (uid) ... done (time: 0.003s)
  117. > create index {{%idx-bind_binds-uid_bind}} on {{%bind_binds}} (uid_bind) ... done (time: 0.003s)
  118. > create unique index {{%idx-bind_binds-uid_uid_bind}} on {{%bind_binds}} (uid,uid_bind) ... done (time: 0.004s)
  119. > add foreign key fki-bind_binds-uid-bind_uids-id: {{%bind_binds}} (uid) references {{%bind_uids}} (id) ... done (time: 0.004s)
  120. > add foreign key fki-bind_binds-uid_bind-bind_uids-id: {{%bind_binds}} (uid_bind) references {{%bind_uids}} (id) ... done (time: 0.003s)
  121. *** applied m180301_090900_create_bind_binds_table (time: 0.046s)
  122.  
  123. *** applying m180302_202819_create_seo_table
  124. > create table {{%bind_seo}} ... done (time: 0.016s)
  125. > create index {{%idx-bind_seo-uid}} on {{%bind_seo}} (uid) ... done (time: 0.003s)
  126. > create index {{%idx-bind_seo-uid_content}} on {{%bind_seo}} (uid_content) ... done (time: 0.003s)
  127. > add foreign key fki-bind_seo-uid-bind_uids-id: {{%bind_seo}} (uid) references {{%bind_uids}} (id) ... done (time: 0.003s)
  128. *** applied m180302_202819_create_seo_table (time: 0.050s)
  129.  
  130. *** applying m180308_163510_create_catalog_table
  131. > create table {{%bind_catalog}} ... done (time: 0.015s)
  132. > create index {{%idx-bind_catalog-uid}} on {{%bind_catalog}} (uid) ... done (time: 0.003s)
  133. > create index {{%idx-bind_catalog-alias}} on {{%bind_catalog}} (alias) ... done (time: 0.002s)
  134. > create index {{%idx-bind_catalog-nickname}} on {{%bind_catalog}} (nickname) ... done (time: 0.003s)
  135. > create index {{%idx-bind_catalog-root}} on {{%bind_catalog}} (root) ... done (time: 0.003s)
  136. > create index {{%idx-bind_catalog-lft}} on {{%bind_catalog}} (lft) ... done (time: 0.003s)
  137. > create index {{%idx-bind_catalog-rgt}} on {{%bind_catalog}} (rgt) ... done (time: 0.003s)
  138. > create index {{%idx-bind_catalog-lvl}} on {{%bind_catalog}} (lvl) ... done (time: 0.003s)
  139. > create index {{%idx-bind_catalog-active}} on {{%bind_catalog}} (active) ... done (time: 0.003s)
  140. > add foreign key fki-bind_catalog-uid-bind_uids-id: {{%bind_catalog}} (uid) references {{%bind_uids}} (id) ... done (time: 0.003s)
  141. *** applied m180308_163510_create_catalog_table (time: 0.058s)
  142.  
  143.  
  144. 4 migrations were applied.
  145.  
  146. Migrated up successfully.
  147. root@f1f9244dd57c:/web/yii2# php yii migrate --migrationPath=@fedornabilkin/redirect/migrations
  148. Yii Migration Tool (based on Yii v2.0.29)
  149.  
  150. Total 2 new migrations to be applied:
  151. m180316_063454_create_redirect_table
  152. m180404_202038_create_redirect_visits_table
  153.  
  154. Apply the above migrations? (yes|no) [no]:y
  155. *** applying m180316_063454_create_redirect_table
  156. > create table {{%redirect}} ... done (time: 0.006s)
  157. *** applied m180316_063454_create_redirect_table (time: 0.018s)
  158.  
  159. *** applying m180404_202038_create_redirect_visits_table
  160. > create table {{%redirect_visits}} ... done (time: 0.004s)
  161. > create index {{%idx-redirect_visits-redirect}} on {{%redirect_visits}} (redirect) ... done (time: 0.002s)
  162. > add foreign key {{%fki-redirect_visits-redirect-redirect-id}}: {{%redirect_visits}} (redirect) references {{%redirect}} (id) ... done (time: 0.001s)
  163. *** applied m180404_202038_create_redirect_visits_table (time: 0.016s)
  164.  
  165.  
  166. 2 migrations were applied.
  167.  
  168. Migrated up successfully.
  169. root@f1f9244dd57c:/web/yii2# php yii migrate --migrationPath=@yii/rbac/migrations
  170. Yii Migration Tool (based on Yii v2.0.29)
  171.  
  172. Total 3 new migrations to be applied:
  173. m140506_102106_rbac_init
  174. m170907_052038_rbac_add_index_on_auth_assignment_user_id
  175. m180523_151638_rbac_updates_indexes_without_prefix
  176.  
  177. Apply the above migrations? (yes|no) [no]:y
  178. *** applying m140506_102106_rbac_init
  179. > create table {{%auth_rule}} ... done (time: 0.010s)
  180. > create table {{%auth_item}} ... done (time: 0.010s)
  181. > create index idx-auth_item-type on {{%auth_item}} (type) ... done (time: 0.004s)
  182. > create table {{%auth_item_child}} ... done (time: 0.008s)
  183. > create table {{%auth_assignment}} ... done (time: 0.007s)
  184. *** applied m140506_102106_rbac_init (time: 0.070s)
  185.  
  186. *** applying m170907_052038_rbac_add_index_on_auth_assignment_user_id
  187. > create index auth_assignment_user_id_idx on {{%auth_assignment}} (user_id) ... done (time: 0.003s)
  188. *** applied m170907_052038_rbac_add_index_on_auth_assignment_user_id (time: 0.018s)
  189.  
  190. *** applying m180523_151638_rbac_updates_indexes_without_prefix
  191. > drop index auth_assignment_user_id_idx on {{%auth_assignment}} ... done (time: 0.002s)
  192. > create index {{%idx-auth_assignment-user_id}} on {{%auth_assignment}} (user_id) ... done (time: 0.004s)
  193. > drop index idx-auth_item-type on {{%auth_item}} ... done (time: 0.002s)
  194. > create index {{%idx-auth_item-type}} on {{%auth_item}} (type) ... done (time: 0.003s)
  195. *** applied m180523_151638_rbac_updates_indexes_without_prefix (time: 0.026s)
  196.  
  197.  
  198. 3 migrations were applied.
  199.  
  200. Migrated up successfully.
Advertisement
Add Comment
Please, Sign In to add comment