HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers85/equichecker.com/vendor/way/generators/tests/features/migrations.feature
Feature: Migrations With Schema

  Scenario: Creating a Table
    When I generate a migration with name 'create_orders_table' and fields 'name:string'
    Then I should see "Created:"
    And the generated migration should match my 'CreateOrdersTable' stub

  Scenario: Creating a Table With Complex Fields
    When I generate a migration with name 'create_orders_table' and fields 'title:string(50):unique, body:text:unique:nullable'
    Then I should see "Created:"
    And the generated migration should match my 'CreateComplexOrdersTable' stub

  Scenario: Dropping a Table
    When I generate a migration with name 'drop_orders_table' and fields 'title:string'
    Then I should see "Created:"
    And the generated migration should match my 'DropOrdersTable' stub

  Scenario: Adding to a Table
    When I generate a migration with name 'add_title_to_orders_table' and fields 'title:string'
    Then I should see "Created:"
    And the generated migration should match my 'AddTitleToOrdersTable' stub

  Scenario: Removing from a Table
    When I generate a migration with name 'remove_title_from_orders_table' and fields 'title:string'
    Then I should see "Created:"
    And the generated migration should match my 'RemoveTitleFromOrdersTable' stub