mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-10-30 19:45:49 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			309 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			309 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
|  | class CreateAccountAliases < ActiveRecord::Migration[5.2] | ||
|  |   def change | ||
|  |     create_table :account_aliases do |t| | ||
|  |       t.belongs_to :account, foreign_key: { on_delete: :cascade } | ||
|  |       t.string :acct, null: false, default: '' | ||
|  |       t.string :uri, null: false, default: '' | ||
|  | 
 | ||
|  |       t.timestamps | ||
|  |     end | ||
|  |   end | ||
|  | end |