-
-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3703 from mathesar-foundation/col_with_meta
RPC endpoint for column info with metadata
- Loading branch information
Showing
8 changed files
with
164 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
mathesar/migrations/0013_alter_columnmetadata_bool_false_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Generated by Django 4.2.11 on 2024-07-24 10:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('mathesar', '0012_merge_20240718_0628'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='bool_false', | ||
field=models.CharField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='bool_input', | ||
field=models.CharField(choices=[('dropdown', 'dropdown'), ('checkbox', 'checkbox')], null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='bool_true', | ||
field=models.CharField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='date_format', | ||
field=models.CharField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='duration_max', | ||
field=models.CharField(max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='duration_min', | ||
field=models.CharField(max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='duration_show_units', | ||
field=models.BooleanField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='mon_currency_location', | ||
field=models.CharField(choices=[('after-minus', 'after-minus'), ('end-with-space', 'end-with-space')], null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='mon_currency_symbol', | ||
field=models.CharField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='num_max_frac_digits', | ||
field=models.PositiveIntegerField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='num_min_frac_digits', | ||
field=models.PositiveIntegerField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='num_show_as_perc', | ||
field=models.BooleanField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='columnmetadata', | ||
name='time_format', | ||
field=models.CharField(null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters