mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-28 15:15:34 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class CreateSamples < ActiveRecord::Migration[4.2]
 | |
|   def change
 | |
|     create_table :samples do |t|
 | |
|       t.string :name, null: false
 | |
| 
 | |
|       # Foreign keys
 | |
|       t.integer :user_id, null: false
 | |
|       t.integer :team_id, null: false
 | |
| 
 | |
|       t.timestamps null: false
 | |
|     end
 | |
|     add_foreign_key :samples, :users
 | |
|     add_foreign_key :samples, :teams
 | |
|     add_index :samples, :user_id
 | |
|     add_index :samples, :team_id
 | |
|   end
 | |
| end
 |