mirror of
				https://github.com/carrotquest/django-clickhouse.git
				synced 2025-11-04 09:57:42 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			306 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			306 B
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
from django_clickhouse import migrations
 | 
						|
from tests.clickhouse_models import ClickHouseTestModel, ClickHouseCollapseTestModel
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    operations = [
 | 
						|
        migrations.CreateTable(ClickHouseTestModel),
 | 
						|
        migrations.CreateTable(ClickHouseCollapseTestModel)
 | 
						|
    ]
 |