Sha256: 7f986953d03d0f204c624df02f1eddd3bd815cde5fef6beae74ebda467b6871d
Contents?: true
Size: 536 Bytes
Versions: 73
Compression:
Stored size: 536 Bytes
Contents
# frozen_string_literal: true class AddConferenceSpeakers < ActiveRecord::Migration[5.2] def change create_table :decidim_conference_speakers do |t| t.references :decidim_conference, index: true t.string :full_name t.jsonb :position t.jsonb :affiliation t.string :twitter_handle t.jsonb :short_bio t.string :personal_url t.string :avatar t.references :decidim_user, index: { name: "index_decidim_conference_speaker_on_decidim_user_id" } t.timestamps end end end
Version data entries
73 entries across 73 versions & 1 rubygems