diff options
author | beatrix <beatrix.bitrot@gmail.com> | 2017-09-28 21:48:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-28 21:48:28 -0400 |
commit | c027a7bd4d7b5af21f4b201d656f7251fa3606a1 (patch) | |
tree | ce2c2327b26358c26cb899ea918988af373ca6d6 /db/migrate | |
parent | 210e6776fce016666ecfd248b2208c487f3440f9 (diff) | |
parent | 53f829dfa8bc376041a442dc84c22aa1cbfcb9d0 (diff) |
Merge pull request #157 from glitch-soc/merging-upstream
ABRACA-HRRRRRRRRRRRNGGGGGGGHHH!!!!!!!!!!!!!!!!!!!
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20170913000752_create_site_uploads.rb | 10 | ||||
-rw-r--r-- | db/migrate/20170917153509_create_custom_emojis.rb | 13 | ||||
-rw-r--r-- | db/migrate/20170918125918_ids_to_bigints.rb | 127 | ||||
-rw-r--r-- | db/migrate/20170924022025_ids_to_bigints2.rb | 9 |
4 files changed, 159 insertions, 0 deletions
diff --git a/db/migrate/20170913000752_create_site_uploads.rb b/db/migrate/20170913000752_create_site_uploads.rb new file mode 100644 index 000000000..2246e48cd --- /dev/null +++ b/db/migrate/20170913000752_create_site_uploads.rb @@ -0,0 +1,10 @@ +class CreateSiteUploads < ActiveRecord::Migration[5.1] + def change + create_table :site_uploads do |t| + t.string :var, default: '', null: false, index: { unique: true } + t.attachment :file + t.json :meta + t.timestamps + end + end +end diff --git a/db/migrate/20170917153509_create_custom_emojis.rb b/db/migrate/20170917153509_create_custom_emojis.rb new file mode 100644 index 000000000..4040c8312 --- /dev/null +++ b/db/migrate/20170917153509_create_custom_emojis.rb @@ -0,0 +1,13 @@ +class CreateCustomEmojis < ActiveRecord::Migration[5.1] + def change + create_table :custom_emojis do |t| + t.string :shortcode, null: false, default: '' + t.string :domain + t.attachment :image + + t.timestamps + end + + add_index :custom_emojis, [:shortcode, :domain], unique: true + end +end diff --git a/db/migrate/20170918125918_ids_to_bigints.rb b/db/migrate/20170918125918_ids_to_bigints.rb new file mode 100644 index 000000000..7483dd77a --- /dev/null +++ b/db/migrate/20170918125918_ids_to_bigints.rb @@ -0,0 +1,127 @@ +class IdsToBigints < ActiveRecord::Migration[5.1] + def up + change_column :account_domain_blocks, :account_id, :bigint + change_column :account_domain_blocks, :id, :bigint + change_column :accounts, :id, :bigint + change_column :blocks, :account_id, :bigint + change_column :blocks, :id, :bigint + change_column :blocks, :target_account_id, :bigint + change_column :conversation_mutes, :account_id, :bigint + change_column :conversation_mutes, :id, :bigint + change_column :deprecated_preview_cards, :id, :bigint if table_exists?(:deprecated_preview_cards) + change_column :domain_blocks, :id, :bigint + change_column :favourites, :account_id, :bigint + change_column :favourites, :id, :bigint + change_column :favourites, :status_id, :bigint + change_column :follow_requests, :account_id, :bigint + change_column :follow_requests, :id, :bigint + change_column :follow_requests, :target_account_id, :bigint + change_column :follows, :account_id, :bigint + change_column :follows, :id, :bigint + change_column :follows, :target_account_id, :bigint + change_column :imports, :account_id, :bigint + change_column :imports, :id, :bigint + change_column :media_attachments, :account_id, :bigint + change_column :media_attachments, :id, :bigint + change_column :mentions, :account_id, :bigint + change_column :mentions, :id, :bigint + change_column :mutes, :account_id, :bigint + change_column :mutes, :id, :bigint + change_column :mutes, :target_account_id, :bigint + change_column :notifications, :account_id, :bigint + change_column :notifications, :from_account_id, :bigint + change_column :notifications, :id, :bigint + change_column :oauth_access_grants, :application_id, :bigint + change_column :oauth_access_grants, :id, :bigint + change_column :oauth_access_grants, :resource_owner_id, :bigint + change_column :oauth_access_tokens, :application_id, :bigint + change_column :oauth_access_tokens, :id, :bigint + change_column :oauth_access_tokens, :resource_owner_id, :bigint + change_column :oauth_applications, :id, :bigint + change_column :oauth_applications, :owner_id, :bigint + change_column :reports, :account_id, :bigint + change_column :reports, :action_taken_by_account_id, :bigint + change_column :reports, :id, :bigint + change_column :reports, :target_account_id, :bigint + change_column :session_activations, :access_token_id, :bigint + change_column :session_activations, :user_id, :bigint + change_column :session_activations, :web_push_subscription_id, :bigint + change_column :settings, :id, :bigint + change_column :settings, :thing_id, :bigint + change_column :statuses, :account_id, :bigint + change_column :statuses, :application_id, :bigint + change_column :statuses, :in_reply_to_account_id, :bigint + change_column :stream_entries, :account_id, :bigint + change_column :stream_entries, :id, :bigint + change_column :subscriptions, :account_id, :bigint + change_column :subscriptions, :id, :bigint + change_column :tags, :id, :bigint + change_column :users, :account_id, :bigint + change_column :users, :id, :bigint + change_column :web_settings, :id, :bigint + change_column :web_settings, :user_id, :bigint + end + + def down + change_column :account_domain_blocks, :account_id, :integer + change_column :account_domain_blocks, :id, :integer + change_column :accounts, :id, :integer + change_column :blocks, :account_id, :integer + change_column :blocks, :id, :integer + change_column :blocks, :target_account_id, :integer + change_column :conversation_mutes, :account_id, :integer + change_column :conversation_mutes, :id, :integer + change_column :deprecated_preview_cards, :id, :integer if table_exists?(:deprecated_preview_cards) + change_column :domain_blocks, :id, :integer + change_column :favourites, :account_id, :integer + change_column :favourites, :id, :integer + change_column :favourites, :status_id, :integer + change_column :follow_requests, :account_id, :integer + change_column :follow_requests, :id, :integer + change_column :follow_requests, :target_account_id, :integer + change_column :follows, :account_id, :integer + change_column :follows, :id, :integer + change_column :follows, :target_account_id, :integer + change_column :imports, :account_id, :integer + change_column :imports, :id, :integer + change_column :media_attachments, :account_id, :integer + change_column :media_attachments, :id, :integer + change_column :mentions, :account_id, :integer + change_column :mentions, :id, :integer + change_column :mutes, :account_id, :integer + change_column :mutes, :id, :integer + change_column :mutes, :target_account_id, :integer + change_column :notifications, :account_id, :integer + change_column :notifications, :from_account_id, :integer + change_column :notifications, :id, :integer + change_column :oauth_access_grants, :application_id, :integer + change_column :oauth_access_grants, :id, :integer + change_column :oauth_access_grants, :resource_owner_id, :integer + change_column :oauth_access_tokens, :application_id, :integer + change_column :oauth_access_tokens, :id, :integer + change_column :oauth_access_tokens, :resource_owner_id, :integer + change_column :oauth_applications, :id, :integer + change_column :oauth_applications, :owner_id, :integer + change_column :reports, :account_id, :integer + change_column :reports, :action_taken_by_account_id, :integer + change_column :reports, :id, :integer + change_column :reports, :target_account_id, :integer + change_column :session_activations, :access_token_id, :integer + change_column :session_activations, :user_id, :integer + change_column :session_activations, :web_push_subscription_id, :integer + change_column :settings, :id, :integer + change_column :settings, :thing_id, :integer + change_column :statuses, :account_id, :integer + change_column :statuses, :application_id, :integer + change_column :statuses, :in_reply_to_account_id, :integer + change_column :stream_entries, :account_id, :integer + change_column :stream_entries, :id, :integer + change_column :subscriptions, :account_id, :integer + change_column :subscriptions, :id, :integer + change_column :tags, :id, :integer + change_column :users, :account_id, :integer + change_column :users, :id, :integer + change_column :web_settings, :id, :integer + change_column :web_settings, :user_id, :integer + end +end diff --git a/db/migrate/20170924022025_ids_to_bigints2.rb b/db/migrate/20170924022025_ids_to_bigints2.rb new file mode 100644 index 000000000..db8ccd919 --- /dev/null +++ b/db/migrate/20170924022025_ids_to_bigints2.rb @@ -0,0 +1,9 @@ +class IdsToBigints2 < ActiveRecord::Migration[5.1] + def up + change_column :statuses_tags, :tag_id, :bigint + end + + def down + change_column :statuses_tags, :tag_id, :integer + end +end |