snipe-it/database/migrations
Daniel Meltzer d722ed3823 Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.

This is a large code change that doesn't do much immediately.  It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.

In addition, I've gone ahead and renamed a few database fields.  We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number.  We had items using ::note and ::notes, I've standardized
on ::notes.  Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.

TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.

Rename assetmodel::modelno to model_number for clarity and consistency

Rename consumable::model_no to model_number for clarity and consistency

Rename assetmodel::note to notes for clarity and consistency

Port asset and assetmodel to new partials layout.  Adapt all code to the renamed model_number and notes database changes.  Fix some stying.

* Share a settings variable with all views.

* Allow editing the per_page setting.  We showed the value, but we never showed it on the edit page..

* use snipeSettings in all views instead of the long ugly path.

* War on partials. Centralize all bootstrap table javascript

* Use model_number instead of modelno in importer

* Codacy fix.

* More unification/deduplication.  Create an edit form template layout that we use as the base for all edit forms.  This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.

* Use a ViewComposer instead of sharing the variable directly.  Fixes artisan optimize trying to hit the db--which ruins new installs

* Fix DB seeder.

* Base sql dump and csv's to import data from for tests.

* Start some functional tests for creating items.

* Add functional tests for all create methods.  Still need to do tests for edits, deletes, and lots of other things

* Improvements to functional tests.

Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.

* Some improvements to acceptance tests.

Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.

I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.

* A few things to make acceptance tests work.  Add a name to the companies table, and make the locations table have the correct name

* Use a .env.tests file for testing functional and unit to allow a separate database.

* Add functional tests for compoents, groups, and licenses.

* Now that the config is in the functional.yml, this just confuses things.

* Start some functional tests for creating items.

* Add functional tests for all create methods.  Still need to do tests for edits, deletes, and lots of other things

* Improvements to functional tests.

Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.

* Some improvements to acceptance tests.

Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.

I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.

* update db dump

* Update tests to new reality

* env for the test setup

* only load the database at beginning of tests, not between each Functional test.

* Fix a miss from renaming note to notes.

* Set Termination date when creating an asset.  It was only set on edit.

* Rename serial_number to serial in components for consistency.

* Update validation rules to match limits in database.  Currently we just accepted the values and they were truncated when adding to DB.

* Much more detailed functional testing of creating items.  This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
..
.gitkeep Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2012_12_06_225921_migration_cartalyst_sentry_install_users.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2012_12_06_225929_migration_cartalyst_sentry_install_groups.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2012_12_06_225945_migration_cartalyst_sentry_install_users_groups_pivot.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2012_12_06_225988_migration_cartalyst_sentry_install_throttle.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_03_23_193214_update_users_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_13_075318_create_models_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_13_075335_create_categories_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_13_075347_create_manufacturers_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_15_015858_add_user_id_to_categories.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_15_112701_add_user_id_to_manufacturers.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_15_190327_create_assets_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_15_190357_create_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_15_201848_add_license_name_to_licenses.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_040323_create_depreciations_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_042851_add_depreciation_id_to_models.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_084923_add_user_id_to_models.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_103258_create_locations_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_103336_add_location_id_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_103407_add_checkedout_to_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_16_103425_create_history_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_17_054359_drop_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_17_054526_add_physical_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_17_055126_create_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_17_062634_add_license_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_18_134332_add_contacts_to_users.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_18_142847_add_info_to_locations.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_18_152942_remove_location_id_from_asset.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_18_164423_set_nullvalues_for_user.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_19_013337_create_asset_logs_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_19_061409_edit_added_on_asset_logs_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_19_062250_edit_location_id_asset_logs_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_055822_add_soft_delete_on_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_121404_add_soft_delete_on_locations.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_123137_add_soft_delete_on_manufacturers.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_123725_add_soft_delete_on_categories.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_130248_create_status_labels.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_130830_add_status_id_on_assets_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_131544_add_status_type_on_status_labels.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_20_134103_add_archived_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_21_002321_add_uploads_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_21_024531_remove_deployable_boolean_from_status_labels.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_22_075308_add_option_label_to_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_22_213400_edits_to_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_013244_create_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_031458_create_license_seats_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_032022_add_type_to_actionlog_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_033008_delete_bad_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_033131_create_new_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_033534_add_licensed_to_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_101308_add_warrantee_to_assets_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_104343_alter_warranty_column_on_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_150450_drop_parent_from_categories.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_151920_add_depreciate_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_25_152903_add_depreciate_to_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_26_211820_drop_license_from_assets_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_11_27_062510_add_note_to_asset_logs_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_12_01_113426_add_filename_to_asset_log.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_12_06_094618_add_nullable_to_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_12_10_084038_add_eol_on_models_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2013_12_12_055218_add_manager_to_users_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_01_28_031200_add_qr_code_to_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_02_13_183016_add_qr_text_to_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_05_24_093839_alter_default_license_depreciation_id.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_05_27_231658_alter_default_values_licenses.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_19_191508_add_asset_name_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_20_004847_make_asset_log_checkedout_to_nullable.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_20_005050_make_asset_log_purchasedate_to_nullable.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_24_003011_add_suppliers.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_24_010742_add_supplier_id_to_asset.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_24_012839_add_zip_to_supplier.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_06_24_033908_add_url_to_supplier.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_07_08_054116_add_employee_id_to_users.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_07_09_134316_add_requestable_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_07_17_085822_add_asset_to_software.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_07_17_161625_make_asset_id_in_logs_nullable.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_08_12_053504_alpha_0_4_2_release.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_08_17_083523_make_location_id_nullable.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_10_16_200626_add_rtd_location_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_10_24_000417_alter_supplier_state_to_32.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_10_24_015641_add_display_checkout_date.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_10_28_222654_add_avatar_field_to_users_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_10_29_045924_add_image_field_to_models_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_01_214955_add_eol_display_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_04_231416_update_group_field_for_reporting.php Fixes #2319 2016-07-26 06:07:47 -07:00
2014_11_05_212408_add_fields_to_licenses.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_07_021042_add_image_to_supplier.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_20_203007_add_username_to_user.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_20_223947_add_auto_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_20_224421_add_prefix_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_11_21_104401_change_licence_type.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2014_12_09_082500_add_fields_maintained_term_to_licenses.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_04_155757_increase_user_field_lengths.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_07_013537_add_soft_deleted_to_log.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_10_040958_fix_bad_assigned_to_ids.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_10_053310_migrate_data_to_new_statuses.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_11_044104_migrate_make_license_assigned_null.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_11_104406_migrate_create_requests_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_12_001312_add_mac_address_to_asset.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_12_024100_change_license_notes_type.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_17_231020_add_localonly_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_19_222322_add_logo_and_colors_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_24_072043_add_alerts_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_25_022931_add_eula_fields.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_25_204513_add_accessories_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_26_091228_add_accessories_user_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_26_115128_add_deleted_at_models.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_02_26_233005_add_category_type.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_03_01_231912_update_accepted_at_to_acceptance_id.php Fixed #2800 - use DBTablePrefix() for raw queries 2016-10-26 11:21:36 -07:00
2015_03_05_011929_add_qr_type_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_03_18_055327_add_note_to_user.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_04_29_234704_add_slack_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_05_04_085151_add_parent_id_to_locations_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_05_22_124421_add_reassignable_to_licenses.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_06_10_003314_fix_default_for_user_notes.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_06_10_003554_create_consumables.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_06_15_183253_move_email_to_username.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_06_23_070346_make_email_nullable.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_06_26_213716_create_asset_maintenances_table.php Use trans instead of lang:: 2016-07-10 21:07:59 -07:00
2015_07_04_212443_create_custom_fields_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_07_09_014359_add_currency_to_settings_and_locations.php Use trans instead of lang:: 2016-07-10 21:07:59 -07:00
2015_07_21_122022_add_expected_checkin_date_to_asset_logs.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_07_24_093845_add_checkin_email_to_category_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_07_25_055415_remove_email_unique_constraint.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_07_29_230054_add_thread_id_to_asset_logs_table.php Actionlog Class: Improvements and polymorphism (#2561) 2016-09-06 19:39:42 -07:00
2015_07_31_015430_add_accepted_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_09_09_195301_add_custom_css_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_09_21_235926_create_custom_field_custom_fieldset.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_09_22_000104_create_custom_fieldsets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_09_22_003321_add_fieldset_id_to_assets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_09_22_003413_migrate_mac_address.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_09_28_003314_fix_default_purchase_order.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_10_01_024551_add_accessory_consumable_price_info.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_10_12_192706_add_brand_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_10_22_003314_fix_defaults_accessories.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_10_23_182625_add_checkout_time_and_expected_checkout_date_to_assets.php Fixed #2800 - use DBTablePrefix() for raw queries 2016-10-26 11:21:36 -07:00
2015_11_05_061015_create_companies_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_05_061115_add_company_id_to_consumables_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_05_183749_image.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_06_092038_add_company_id_to_accessories_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_06_100045_add_company_id_to_users_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_06_134742_add_company_id_to_licenses_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_08_035832_add_company_id_to_assets_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_08_222305_add_ldap_fields_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_15_151803_add_full_multiple_companies_support_to_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_26_195528_import_ldap_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_11_30_191504_remove_fk_company_id.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_12_21_193006_add_ldap_server_cert_ignore_to_settings_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_12_30_233509_add_timestamp_and_userId_to_custom_fields.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2015_12_30_233658_add_timestamp_and_userId_to_custom_fieldsets.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_01_28_041048_add_notes_to_models.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_02_19_070119_add_remember_token_to_users_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_02_19_073625_create_password_resets_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_02_193043_add_ldap_flag_to_users.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_02_220517_update_ldap_filter_to_longer_field.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_08_225351_create_components_table.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_09_024038_add_min_stock_to_tables.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_10_133849_add_locale_to_users.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_10_135519_add_locale_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_11_185621_add_label_settings_to_settings.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_03_22_125911_fix_custom_fields_regexes.php Version 3 - hold onto your butts 2016-03-25 01:18:05 -07:00
2016_04_28_141554_add_show_to_users.php Ability to suppress users from checkoutable list 2016-04-28 20:19:22 -07:00
2016_05_16_164733_add_model_mfg_to_consumable.php Add model_no, item_no, and manufacturer to consumables 2016-05-16 17:11:31 -07:00
2016_05_19_180351_add_alt_barcode_settings.php Added 2D barcodes to labels 2016-05-19 19:12:42 -07:00
2016_05_19_191146_add_alter_interval.php Add settings for alert interval threshold and inventory threshold 2016-05-19 19:33:53 -07:00
2016_05_19_192226_add_inventory_threshold.php Add settings for alert interval threshold and inventory threshold 2016-05-19 19:33:53 -07:00
2016_05_20_024859_remove_option_keys_from_settings_table.php Fix mistake in the settings table kerfuffle. 2016-05-24 17:41:59 -05:00
2016_05_20_143758_remove_option_value_from_settings_table.php Fix mistake in the settings table kerfuffle. 2016-05-24 17:41:59 -05:00
2016_06_01_140218_add_email_domain_and_format_to_settings.php Migration for for email/username format settings 2016-06-01 15:44:37 -07:00
2016_06_22_160725_add_user_id_to_maintenances.php Show admin in maintenances 2016-06-22 17:04:47 -07:00
2016_07_13_150015_add_is_ad_to_settings.php Possible fix for #2246 - needs AD testing 2016-07-13 15:18:29 -07:00
2016_07_14_153609_add_ad_domain_to_settings.php More AD fixes 2016-07-14 16:27:32 -07:00
2016_07_22_003348_fix_custom_fields_regex_stuff.php Fixes #2292 2016-07-22 01:16:18 -07:00
2016_07_22_054850_one_more_mac_addr_fix.php One more fix for MAC address weirdness 2016-07-22 05:56:00 -07:00
2016_07_22_143045_add_port_to_ldap_settings.php Add LDAP port number option 2016-07-22 15:09:49 -07:00
2016_07_22_153432_add_tls_to_ldap_settings.php Added TLS option in settings for LDAP 2016-07-22 16:00:37 -07:00
2016_07_27_211034_add_zerofill_to_settings.php Change default zerofill to 5 2016-07-27 21:47:03 -07:00
2016_08_02_124944_add_color_to_statuslabel.php Added custom color to status labels, only show status labels if there are results 2016-08-02 13:25:50 -07:00
2016_08_04_134500_add_disallow_ldap_pw_sync_to_settings.php Allow admin to turn LDAP password sync off. 2016-08-04 14:29:28 -07:00
2016_08_09_002225_add_manufacturer_to_licenses.php Add manufacturer to licenses (#2436) 2016-08-16 18:49:54 -07:00
2016_08_12_121613_add_manufacturer_to_accessories_table.php Add manufacturer to licenses (#2436) 2016-08-16 18:49:54 -07:00
2016_08_23_143353_add_new_fields_to_custom_fields.php Add new fields to custom fields table 2016-08-23 15:50:43 -07:00
2016_08_23_145619_add_show_in_nav_to_status_labels.php Allow admins to show status labels in nav 2016-08-23 15:50:52 -07:00
2016_08_30_084634_make_purchase_cost_nullable.php Hotfix for dumb enum issue 2016-09-06 20:01:10 -07:00
2016_09_01_141051_add_requestable_to_asset_model.php Checkout Improvements, and initial support for requesting an asset model (#2573) 2016-09-15 19:58:27 -07:00
2016_09_02_001448_create_checkout_requests_table.php Checkout Improvements, and initial support for requesting an asset model (#2573) 2016-09-15 19:58:27 -07:00
2016_09_04_180400_create_actionlog_table.php Fix migration from integer to string to handle polymorphic migration 2016-09-20 00:46:14 -07:00
2016_09_04_182149_migrate_asset_log_to_action_log.php Fix missing 'filename' field in asset_log to action_log migration (#2854) 2016-10-31 11:18:48 -07:00
2016_09_19_235935_fix_fieldtype_for_target_type.php Fix migration from integer to string to handle polymorphic migration 2016-09-20 00:46:14 -07:00
2016_09_23_140722_fix_modelno_in_consumables_to_string.php Fixes #2672 - model_no field updated to be string 2016-09-23 14:10:08 -07:00
2016_09_28_231359_add_company_to_logs.php Company to logs (#2717) 2016-09-29 22:20:49 -07:00
2016_10_14_130709_fix_order_number_to_varchar.php Fixes #2774 - change order_number to string in components and consumables 2016-10-14 13:12:17 -07:00
2016_10_16_015024_rename_modelno_to_model_number.php Partialize forms (#2884) 2016-11-16 16:56:57 -08:00
2016_10_16_015211_rename_consumable_modelno_to_model_number.php Partialize forms (#2884) 2016-11-16 16:56:57 -08:00
2016_10_16_143235_rename_model_note_to_notes.php Partialize forms (#2884) 2016-11-16 16:56:57 -08:00
2016_10_16_165052_rename_component_total_qty_to_qty.php Partialize forms (#2884) 2016-11-16 16:56:57 -08:00
2016_10_19_145520_fix_order_number_in_components_to_string.php Change order number to string in components table 2016-10-19 14:59:28 -07:00
2016_10_27_151715_add_serial_to_components.php Fixes #2809 - adds serial number to components 2016-10-27 15:33:48 -07:00
2016_10_27_213251_increase_serial_field_capacity.php Fixes #2535 - increased varachar limit to 2048 for serial 2016-10-27 21:39:46 -07:00
2016_10_29_002724_enable_2fa_fields.php Fixes #106 - adds Google Authenticator support (#2842) 2016-10-29 05:50:55 -07:00
2016_10_29_082408_add_signature_to_acceptance.php Adds drawn signature to asset acceptance (#2846) 2016-10-31 21:00:30 -07:00
2016_11_01_030818_fix_forgotten_filename_in_action_logs.php Add back forgotten filename to Action Logs with a migration (#2865) 2016-11-02 01:17:42 -07:00
2016_11_13_020954_rename_component_serial_number_to_serial.php Partialize forms (#2884) 2016-11-16 16:56:57 -08:00