11 lines
		
	
	
		
			169 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			169 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class CreateUsers < ActiveRecord::Migration[6.0]
 | |
|   def change
 | |
|     create_table :users do |t|
 | |
|       t.string :cn
 | |
|       t.string :ou
 | |
| 
 | |
|       t.timestamps
 | |
|     end
 | |
|   end
 | |
| end
 |