Sha256: 22aaf4b69068c3a9ebe5701dc71d21f8ad65df8f489b7c06d3c5544ce71b877a
Contents?: true
Size: 704 Bytes
Versions: 44
Compression:
Stored size: 704 Bytes
Contents
Sequel.migration do change do create_table(:deployed_versions, charset: "utf8") do primary_key :id String :uuid, null: false foreign_key :version_id, :versions, null: false Integer :pacticipant_id, null: false foreign_key :environment_id, :environments, null: false Boolean :currently_deployed, null: false Boolean :replaced_previous_deployed_version, null: false DateTime :created_at DateTime :updated_at DateTime :undeployed_at index [:uuid], unique: true, name: "deployed_versions_uuid_index" index [:pacticipant_id, :currently_deployed], name: "deployed_versions_pacticipant_id_currently_deployed_index" end end end
Version data entries
44 entries across 44 versions & 1 rubygems