{"id":22808279,"url":"https://github.com/sixarm/sixarm_ruby_migration_helper_extensions","last_synced_at":"2026-05-17T17:05:24.590Z","repository":{"id":1123381,"uuid":"996378","full_name":"SixArm/sixarm_ruby_migration_helper_extensions","owner":"SixArm","description":"SixArm.com » Ruby » Migration Helper extensions and extras","archived":false,"fork":false,"pushed_at":"2023-09-15T19:28:29.000Z","size":302,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-06T00:24:54.690Z","etag":null,"topics":["extension","gem","migration","rails","ruby"],"latest_commit_sha":null,"homepage":"http://sixarm.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SixArm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2010-10-18T05:09:31.000Z","updated_at":"2023-05-22T14:12:01.000Z","dependencies_parsed_at":"2022-07-06T05:33:01.966Z","dependency_job_id":"ed9f7693-1276-456e-a8ac-b5377c3286e6","html_url":"https://github.com/SixArm/sixarm_ruby_migration_helper_extensions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm_ruby_migration_helper_extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm_ruby_migration_helper_extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm_ruby_migration_helper_extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm_ruby_migration_helper_extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SixArm","download_url":"https://codeload.github.com/SixArm/sixarm_ruby_migration_helper_extensions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246379366,"owners_count":20767696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["extension","gem","migration","rails","ruby"],"created_at":"2024-12-12T11:08:55.942Z","updated_at":"2025-09-25T15:12:18.130Z","avatar_url":"https://github.com/SixArm.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SixArm.com → Ruby → \u003cbr\u003e Migration Helper Extensions for Ruby On Rails ActiveRecord\n\n\u003c!--header-open--\u003e\n\n[![Gem Version](https://badge.fury.io/rb/sixarm_ruby_migration_helper_extensions.svg)](http://badge.fury.io/rb/sixarm_ruby_migration_helper_extensions)\n[![Build Status](https://travis-ci.org/SixArm/sixarm_ruby_migration_helper_extensions.png)](https://travis-ci.org/SixArm/sixarm_ruby_migration_helper_extensions)\n[![Code Climate](https://api.codeclimate.com/v1/badges/c0c87ef7543e0da158f5/maintainability)](https://codeclimate.com/github/SixArm/sixarm_ruby_migration_helper_extensions/maintainability)\n\n* Git: \u003chttps://github.com/SixArm/sixarm_ruby_migration_helper_extensions\u003e\n* Doc: \u003chttp://sixarm.com/sixarm_ruby_migration_helper_extensions/doc\u003e\n* Gem: \u003chttps://rubygems.org/gems/sixarm_ruby_migration_helper_extensions\u003e\n* Contact: Joel Parker Henderson, \u003cjoel@sixarm.com\u003e\n* Project: [changes](CHANGES.md), [license](LICENSE.md), [contributing](CONTRIBUTING.md).\n\n\u003c!--header-shut--\u003e\n\n\n## Introduction\n\nRuby On Rails ActiveRecord MigrationHelper extensions\n\nFor docs go to \u003chttp://sixarm.com/sixarm_ruby_migration_helper_extensions/doc\u003e\n\nWant to help? We're happy to get pull requests.\n\n\n\u003c!--install-open--\u003e\n\n## Install\n\n### Gem\n\nTo install this gem in your shell or terminal:\n\n    gem install sixarm_ruby_migration_helper_extensions\n\n### Gemfile\n\nTo add this gem to your Gemfile:\n\n    gem 'sixarm_ruby_migration_helper_extensions'\n\n### Require\n\nTo require the gem in your code:\n\n    require 'sixarm_ruby_migration_helper_extensions'\n\n\u003c!--install-shut--\u003e\n\n\n## Examples\n\nMigration:\n\n    require \"sixarm_ruby_migration_helper_extensions\"\n    class CreateItems \u003c ActiveRecord::Migration\n\n      def self.up\n         create_table 'items' do |t|\n           t.timestamps\n           t.name\n           t.email\n           t.phone\n           t.height\n           t.weight\n           t.latitude\n           t.longitude\n         end\n       end\n\n      def self.down\n        drop_table 'items'\n      end\n\n    end\n\nThe result is an item class with fields of the various data types:\n\n    item = Item.new\n    item.name = \"Statue Of Liberty\"\n    item.email = \"liberty@example.com\"\n    item.phone = \"+1-212-363-3200\"\n    item.height = 46.50\n    item.weight = 204116566\n    item.latitude = 40.68913\n    item.longitude = -74.0446\n    item.save\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsixarm%2Fsixarm_ruby_migration_helper_extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsixarm%2Fsixarm_ruby_migration_helper_extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsixarm%2Fsixarm_ruby_migration_helper_extensions/lists"}